/* ============================================================
   PPDB MTsN 2 Kota Bekasi — Custom Stylesheet
   ============================================================ */

/* SIDEBAR */
.sidebar {
  width: 240px;
  min-height: calc(100vh - 56px);
  flex-shrink: 0;
  transition: transform .25s ease;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

@media (max-width: 991.98px) {
  .sidebar {
    position: fixed;
    top: 56px;
    left: 0;
    height: calc(100vh - 56px);
    transform: translateX(-100%);
    z-index: 1040;
    width: 260px;
  }
  .sidebar.show {
    transform: translateX(0);
    box-shadow: 4px 0 16px rgba(0,0,0,.15);
  }
}

.sidebar-link {
  border-radius: 8px;
  font-size: .875rem;
  padding: .45rem .75rem;
  color: #444;
  transition: background .15s, color .15s;
}
.sidebar-link:hover, .sidebar-link.active {
  background: #e8eeff;
  color: #1a4a8a;
  font-weight: 500;
}
.sidebar-link.active {
  background: #d0dcff;
}

/* STAT ICON */
.stat-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* CARD default border radius */
.card { border-radius: 12px !important; }

/* TABLE hover subtler */
.table-hover > tbody > tr:hover > * {
  background-color: #f5f7ff;
}

/* PROGRESS */
.progress { border-radius: 8px; }

/* BADGE subtle fix (Bootstrap 5.3) */
.bg-primary-subtle { background-color: #dce7ff !important; }
.bg-success-subtle { background-color: #d4edda !important; }
.bg-danger-subtle  { background-color: #f8d7da !important; }
.bg-warning-subtle { background-color: #fff3cd !important; }
.bg-info-subtle    { background-color: #d1ecf1 !important; }

/* PRINT: sembunyikan navbar & sidebar */
@media print {
  .navbar, .sidebar, .no-print { display: none !important; }
  main { padding: 0 !important; }
  .card { border: none !important; box-shadow: none !important; }
}

/* FONT MONOSPACE nomor pendaftaran */
.font-monospace { font-family: 'Courier New', monospace; }

/* AUTOCOMPLETE dropdown sekolah */
#hasilSekolah .list-group-item {
  border-left: none; border-right: none;
}
#hasilSekolah .list-group-item:first-child { border-top: none; }

/* TAB NAVIGASI formulir — scrollable di mobile */
.nav-tabs { flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
            -webkit-overflow-scrolling: touch; }
.nav-tabs .nav-link { white-space: nowrap; font-size: .85rem; }

/* HERO gradient ringan */
.bg-primary { background: linear-gradient(135deg, #1a4a8a 0%, #2563b0 100%) !important; }
