/* DASHBOARD */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* WELCOME CARD*/

.welcome-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  min-height: 230px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.welcome-left {
  flex: 1;
  padding-right: 25px;
}

.welcome-left h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #0f172a;
}

.welcome-left p {
  color: #243b53;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 500;
}

.welcome-right {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.welcome-right img {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}
.welcome-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.welcome-button {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-secondary {
  background: #eef2ff;
  color: #2563eb;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

/*statistik*/

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.stats .card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}

.stats .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.15);
}

.stats .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.blue {
  background: #2563eb;
}
.green {
  background: #10b981;
}
.orange {
  background: #f59e0b;
}
.purple {
  background: #8b5cf6;
}

/*stats span h2*/
.stats span {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
}

.stats h2 {
  color: #111827;
  font-size: 36px;
  font-weight: 700;
}

.stats span,
.stats h2 {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.35);
}
