/* Custom CSS Syafana Islamic School Monitoring */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --syafana-navy: #0f172a;
  --syafana-blue: #1e3a8a;
  --syafana-sky: #0ea5e9;
  --syafana-emerald: #10b981;
  --syafana-amber: #f59e0b;
  --syafana-rose: #f43f5e;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
}

/* Glassmorphism Cards */
.card-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
}

.card-navy {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: 1.25rem;
}

/* Status Badges */
.badge-selesai {
  background-color: rgba(16, 185, 129, 0.15);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 700;
  padding: 0.35em 0.75em;
  border-radius: 50rem;
}

.badge-progress {
  background-color: rgba(245, 158, 11, 0.15);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-weight: 700;
  padding: 0.35em 0.75em;
  border-radius: 50rem;
}

.badge-belum {
  background-color: rgba(244, 63, 94, 0.15);
  color: #9f1239;
  border: 1px solid rgba(244, 63, 94, 0.3);
  font-weight: 700;
  padding: 0.35em 0.75em;
  border-radius: 50rem;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Sidebar active link */
.sidebar-link {
  color: #94a3b8;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.sidebar-link.active {
  background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Print specific styling */
@media print {
  body {
    background: white !important;
  }
  .no-print, nav, aside, .btn-print-hide {
    display: none !important;
  }
  .main-content {
    margin: 0 !important;
    padding: 0 !important;
  }
}
