/* AREA DASHBOARD, BUKAN HEADER KEDUA */
.db-banner {
  background: #f0f3f8;
  padding: 28px 0 0;
  position: relative;
  overflow: visible;
}

.db-banner::after {
  display: none;
}

.db-banner-inner {
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(13, 35, 71, 0.08);
}

.db-greeting h1 {
  font-size: 22px;
  font-weight: 700;
  color: #0d2347;
  margin: 0 0 5px;
}

.db-greeting p {
  font-size: 13.5px;
  color: #6b7280;
  margin: 0;
}

.db-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-tambah {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #e8a020, #c47c10);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(232, 160, 32, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-tambah:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(232, 160, 32, 0.38);
  color: #ffffff;
}

.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0d2347;
  border: 1px solid #d8e3f0;
  border-radius: 9px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-logout:hover {
  background: #f8fafc;
  border-color: #b9c6d8;
  color: #0d2347;
}

.db-content {
  padding: 22px 0 48px;
  background: #f0f3f8;
  min-height: 60vh;
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 16px 18px;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #8a94a6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.stat-val {
  font-size: 26px;
  font-weight: 700;
  color: #0d2347;
  line-height: 1;
}

.stat-val-proses {
  color: #1e40af;
}

.stat-val-selesai {
  color: #065f46;
}

.stat-val-ditolak {
  color: #991b1b;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title-icon {
  color: #185fa5;
}

.db-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px dashed #dde2ec;
  border-radius: 12px;
  color: #8a94a6;
}

.db-empty i {
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
  color: #c8d0de;
}

.db-empty h3 {
  font-size: 16px;
  font-weight: 600;
  color: #4a5568;
  margin: 0 0 6px;
}

.db-empty p {
  font-size: 13.5px;
  margin: 0 0 20px;
}

.pengajuan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pengajuan-card {
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.1s;
}

.pengajuan-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #c8d0de;
  transform: translateY(-1px);
}

.pcard-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef3fc;
  color: #185fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pcard-id {
  font-size: 11.5px;
  color: #8a94a6;
  margin: 0 0 2px;
}

.pcard-info {
  font-size: 14px;
  font-weight: 600;
  color: #1a2340;
  margin: 0 0 3px;
  max-width: 380px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pcard-date {
  font-size: 12px;
  color: #8a94a6;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pcard-calendar-icon {
  font-size: 12px;
}

.pcard-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.status-badge {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  white-space: nowrap;
}

.status-validasi {
  background: #fff7ed;
  color: #92400e;
  border-color: #fed7aa;
}

.status-diproses {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

.status-selesai {
  background: #f0fdf4;
  color: #065f46;
  border-color: #a7f3d0;
}

.status-ditolak {
  background: #fff5f5;
  color: #991b1b;
  border-color: #fecaca;
}

.status-tidak-tersedia {
  background: #fafaf9;
  color: #44403c;
  border-color: #d6d3d1;
}

.status-default {
  background: #f5f5f5;
  color: #555555;
  border-color: #dddddd;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #185fa5;
  white-space: nowrap;
}

.sukses-alert {
  background: #f0fdf8;
  border: 1px solid #a7f3d0;
  border-left: 3px solid #22a86e;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 575px) {
  .pcard-info {
    max-width: 200px;
  }

  .db-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}






.login-wrap {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #f0f3f8;
  }
  .login-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    padding: 36px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }
  .login-logo {
    width: 48px; height: 48px;
    background: linear-gradient(145deg, #e8a020, #c47c10);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; font-weight: 700;
    margin: 0 auto 20px;
  }
  .login-card h2 {
    font-size: 20px; font-weight: 700; color: #0d2347;
    text-align: center; margin: 0 0 6px;
  }
  .login-card > p {
    font-size: 13.5px; color: #8a94a6;
    text-align: center; margin: 0 0 28px;
  }
  .form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
  .pf-label { font-size: 12px; font-weight: 600; color: #4a5568; }
  .form-control {
    height: 42px; border: 1px solid #dde2ec; border-radius: 8px;
    padding: 0 12px; font-size: 14px; color: #1a2340; width: 100%;
    box-sizing: border-box; font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .form-control:focus {
    outline: none; border-color: #185FA5;
    box-shadow: 0 0 0 3px rgba(24,95,165,0.1);
  }
  .form-control.is-invalid { border-color: #e74c3c !important; background: #fff8f8; }
  .field-error { font-size: 12px; color: #c0392b; margin: 3px 0 0; display: flex; align-items: center; gap: 4px; }
  .alert-error {
    background: #fff5f5; border: 1px solid #fecaca;
    border-left: 3px solid #e74c3c; border-radius: 8px;
    padding: 12px 14px; margin-bottom: 20px;
    font-size: 13.5px; color: #A32D2D;
    display: flex; align-items: center; gap: 8px;
  }
  .alert-success {
    background: #f0fdf8; border: 1px solid #a7f3d0;
    border-left: 3px solid #22a86e; border-radius: 8px;
    padding: 12px 14px; margin-bottom: 20px;
    font-size: 13.5px; color: #065f46;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-login {
    width: 100%; height: 44px;
    background: #0d2347; color: #fff; border: none;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px; transition: background 0.2s;
  }
  .btn-login:hover { background: #0a1628; }
  .login-footer { text-align: center; margin-top: 22px; font-size: 13px; color: #8a94a6; }
  .login-footer a { color: #185FA5; text-decoration: none; font-weight: 500; }
  .login-footer a:hover { text-decoration: underline; }
  .divider { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
  .divider span { font-size: 12px; color: #c8d0de; white-space: nowrap; }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #e5e9f0; }
  
  