/* FUO ODeL — handcrafted styles on top of Tailwind */

.hero-banner {
  background: linear-gradient(100deg, #0c4429 0%, #116a3f 55%, #157d4c 100%);
}
.hero-photo {
  background-image: linear-gradient(100deg, #0c4429ee 35%, #116a3fcc 60%, #116a3f55 100%), var(--hero-img);
  background-size: cover;
  background-position: center;
}

.login-photo {
  background-image: var(--login-img);
  background-size: cover;
  background-position: center;
}

.sidebar-scroll::-webkit-scrollbar { width: 6px; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: #ffffff2a; border-radius: 999px; }

/* exam page: disable text selection for deterrence */
.exam-lock { -webkit-user-select: none; user-select: none; }

/* countdown */
.exam-timer-low { color: #e11d48 !important; }

/* print receipts clean */
@media print {
  aside, header, .no-print, form button, .btn, .btn-primary, .btn-ghost, .btn-danger { display: none !important; }
  main { padding: 0 !important; }
  .card { border: none; box-shadow: none; }
  body { background: #fff !important; }
}

/* tiny entrance animation for cards */
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
main > * { animation: rise .25s ease both; }
