/* ============================================================
   ADIPPATI.ID — Custom styles
   Bootstrap 5 datang dari CDN. File ini hanya penyesuaian kecil.
   ============================================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Kartu siswa di dashboard */
.student-card {
  transition: box-shadow 0.15s ease-in-out;
}
.student-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* Radio besar untuk form observasi (mudah di-tap di HP) */
.rating-option {
  cursor: pointer;
}
.rating-option input[type="radio"] {
  display: none;
}
.rating-option label {
  display: block;
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.rating-option input[type="radio"]:checked + label {
  border-color: #0d6efd;
  background-color: #e7f1ff;
  font-weight: 600;
}

/* Sparkline dots untuk tren mini di dashboard guru */
.trend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 1px;
}

/* Navbar brand sedikit lebih tebal */
.navbar-brand {
  font-weight: 700;
}
