@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0d0f14; --surface: #161b25; --surface2: #1e2534; --border: #2a3347;
  --accent: #3b82f6; --accent2: #06b6d4; --success: #10b981;
  --warning: #f59e0b; --danger: #ef4444; --text: #e2e8f0; --muted: #64748b;
  --font-head: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif;
  --radius: 12px; --radius-sm: 8px; --shadow: 0 4px 24px rgba(0,0,0,.4);
  --transition: all 0.2s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Navbar */
.navbar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.navbar-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--accent); text-decoration: none; transition: var(--transition); }
.navbar-brand:hover { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-notification { position: relative; font-size: 1.2rem; }
.nav-badge { background: var(--danger); color: #fff; border-radius: 99px; padding: 2px 7px; font-size: .7rem; font-weight: 700; position: absolute; top: -8px; right: -10px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.nav-user-menu { display: flex; align-items: center; gap: .75rem; padding-left: 1.5rem; border-left: 1px solid var(--border); }
.nav-user-name { font-weight: 600; color: var(--text); }
.nav-profile-link { font-size: 1.1rem; padding: .25rem; border-radius: 50%; transition: var(--transition); }
.nav-profile-link:hover { background: var(--surface2); }
.nav-logout { color: var(--danger) !important; font-weight: 600; }
.nav-logout:hover { color: #dc2626 !important; }

/* Mobile Menu Toggle */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: .5rem; border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-menu-btn:hover { background: var(--surface2); }

/* Sidebar */
.page-wrapper { display: flex; min-height: calc(100vh - 64px); }
.sidebar { width: 260px; background: var(--surface); border-right: 1px solid var(--border); padding: 1.5rem 0; flex-shrink: 0; overflow-y: auto; }
.sidebar-user { display: flex; align-items: center; gap: .75rem; padding: 0 1rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.sidebar-avatar { width: 45px; height: 45px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: #fff; }
.sidebar-user-info { flex: 1; }
.sidebar-user-name { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.sidebar-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 0 1rem; margin-bottom: .5rem; display: block; margin-top: 1.5rem; }
.sidebar a { display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem; border-radius: 0; color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: var(--transition); border-left: 3px solid transparent; }
.sidebar a:hover { background: var(--surface2); color: var(--text); border-left-color: var(--accent); }
.sidebar a.active { background: var(--surface2); color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.sidebar-logout { color: var(--danger) !important; margin-top: 1rem; border-top: 1px solid var(--border); }
.sidebar-logout:hover { background: rgba(239,68,68,.1); border-left-color: var(--danger); }
.sidebar-badge { margin-left: auto; background: var(--danger); color: #fff; border-radius: 99px; padding: 2px 8px; font-size: .75rem; font-weight: 700; }
.nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* Main Content */
.main-content { flex: 1; padding: 2rem; max-width: 1200px; width: 100%; overflow-y: auto; }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; transition: var(--transition); }
.card:hover { border-color: rgba(59,130,246,.3); }
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stat-label { color: var(--muted); font-size: .85rem; margin-top: .25rem; }
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead { background: var(--surface2); }
th { text-align: left; padding: .85rem 1rem; font-family: var(--font-head); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
td { padding: .85rem 1rem; border-top: 1px solid var(--border); }
tr:hover td { background: rgba(255,255,255,.02); }
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .65rem; border-radius: 99px; font-size: .75rem; font-weight: 600; }
.badge-present, .badge-success { background: rgba(16,185,129,.15); color: var(--success); border: 1px solid rgba(16,185,129,.3); }
.badge-absent, .badge-danger { background: rgba(239,68,68,.15); color: var(--danger); border: 1px solid rgba(239,68,68,.3); }
.badge-pending, .badge-warning { background: rgba(245,158,11,.15); color: var(--warning); border: 1px solid rgba(245,158,11,.3); }
.badge-late { background: rgba(6,182,212,.15); color: var(--accent2); border: 1px solid rgba(6,182,212,.3); }
.badge-info { background: rgba(59,130,246,.15); color: var(--accent); border: 1px solid rgba(59,130,246,.3); }
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem 1.3rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,.1); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #2563eb; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(59,130,246,.4); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(16,185,129,.4); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(239,68,68,.4); }
.btn-warning { background: var(--warning); color: #000; }
.btn-warning:hover { background: #d97706; color: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--surface2); border-color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }
.btn-lg { padding: .75rem 1.75rem; font-size: 1rem; }
.btn-group { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: .4rem; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=datetime-local], select, textarea { width: 100%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); padding: .65rem 1rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; transition: border-color .2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.errorlist { color: var(--danger); font-size: .8rem; margin-top: .25rem; list-style: none; }
.alert { padding: .85rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .9rem; border-left: 4px solid; display: flex; align-items: center; gap: .75rem; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(-20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.alert-dismissible { position: relative; padding-right: 3rem; }
.alert-close { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: inherit; font-size: 1.5rem; cursor: pointer; opacity: .6; transition: var(--transition); padding: 0; line-height: 1; }
.alert-close:hover { opacity: 1; }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; }
.alert-success { background: rgba(16,185,129,.1); border-color: var(--success); color: var(--success); }
.alert-error { background: rgba(239,68,68,.1); border-color: var(--danger); color: var(--danger); }
.alert-warning { background: rgba(245,158,11,.1); border-color: var(--warning); color: var(--warning); }
.alert-info { background: rgba(59,130,246,.1); border-color: var(--accent); color: var(--accent); }
.progress-bar { background: var(--surface2); border-radius: 99px; height: 6px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 99px; }
.attendance-code { font-family: 'Courier New', monospace; font-size: 2.5rem; font-weight: 900; letter-spacing: .3em; color: var(--accent2); background: var(--surface2); border: 2px dashed var(--border); padding: 1rem 2rem; border-radius: var(--radius); text-align: center; display: block; margin: 1rem 0; }
.code-input { font-family: 'Courier New', monospace !important; font-size: 1.5rem !important; letter-spacing: .2em !important; text-align: center !important; text-transform: uppercase !important; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.page-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; }
.page-subtitle { color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 20% 50%, rgba(59,130,246,.06) 0%, transparent 60%), var(--bg); }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 480px; }
.auth-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--accent); text-align: center; margin-bottom: 1.5rem; display: block; }
.auth-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
.auth-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.75rem; }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem}
.flex{display:flex} .flex-between{display:flex;justify-content:space-between;align-items:center}
.gap-1{gap:.5rem} .gap-2{gap:1rem} .text-muted{color:var(--muted)} .text-center{text-align:center}
.text-success{color:var(--success)} .text-danger{color:var(--danger)} .text-warning{color:var(--warning)} .w-100{width:100%}
.flagged-row td { background: rgba(239,68,68,.05) !important; }

/* Empty States */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.empty-state-icon { font-size: 4rem; margin-bottom: 1rem; opacity: .5; }
.empty-state-text { font-size: 1.1rem; margin-bottom: .5rem; }
.empty-state-sub { font-size: .9rem; }

/* Quick Action Cards */
.quick-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.quick-action-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; cursor: pointer; transition: var(--transition); text-decoration: none; color: var(--text); }
.quick-action-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(59,130,246,.2); }
.quick-action-icon { font-size: 2rem; margin-bottom: .5rem; }
.quick-action-title { font-weight: 600; margin-bottom: .25rem; }
.quick-action-desc { font-size: .85rem; color: var(--muted); }

/* Session Status Indicators */
.session-status { display: inline-flex; align-items: center; gap: .5rem; }
.session-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.session-status.open::before { background: var(--success); animation: blink 1.5s infinite; }
.session-status.closed::before { background: var(--danger); }
.session-status.finalized::before { background: var(--muted); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* Form Enhancements */
.form-hint { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.form-required::after { content: '*'; color: var(--danger); margin-left: 2px; }

/* Breadcrumbs */
.breadcrumbs { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .85rem; color: var(--muted); }
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs-separator { opacity: .5; }

/* Responsive */
@media(max-width:768px){ 
  .sidebar{ 
    position: fixed;
    left: -280px;
    top: 56px;
    height: calc(100vh - 56px);
    z-index: 99;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,.3);
  }
  .sidebar.active {
    left: 0;
  }
  .mobile-menu-btn { display: block; }
  
  .form-row{grid-template-columns:1fr} 
  .stat-grid{grid-template-columns:repeat(2,1fr)} 
  .main-content { padding: 1rem; }
  .navbar { padding: 0 1rem; }
  .nav-user-name { display: none; }
  .quick-actions { grid-template-columns: 1fr; }
  
  /* Overlay when sidebar is open */
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 98;
  }
  .sidebar-overlay.active {
    display: block;
  }
  
  /* Mobile-specific enhancements */
  .page-title { font-size: 1.3rem; }
  .page-subtitle { font-size: .8rem; }
  .page-header { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .page-header .btn-group { width: 100%; }
  .page-header .btn { flex: 1; justify-content: center; }
  
  /* Card adjustments for mobile */
  .card { padding: 1rem; margin-bottom: 1rem; }
  .card-title { font-size: 1rem; }
  
  /* Table improvements for mobile */
  .table-wrapper { 
    border-radius: var(--radius-sm);
    -webkit-overflow-scrolling: touch;
  }
  table { font-size: .85rem; }
  th, td { padding: .65rem .75rem; }
  
  /* Button adjustments */
  .btn { padding: .55rem 1rem; font-size: .85rem; }
  .btn-sm { padding: .35rem .75rem; font-size: .75rem; }
  .btn-group { gap: .4rem; flex-wrap: wrap; }
  
  /* DataTables mobile */
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter,
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    font-size: .8rem;
  }
  .dataTables_wrapper .dataTables_filter input {
    width: 150px;
    max-width: 100%;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: .3rem .6rem;
    font-size: .8rem;
  }
  
  /* Form inputs mobile */
  input[type=text], input[type=email], input[type=password], 
  input[type=number], input[type=datetime-local], select, textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: .6rem .85rem;
  }
  
  /* Stat cards mobile */
  .stat-card { padding: 1rem; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: .8rem; }
  
  /* Navigation mobile */
  .navbar { height: 56px; }
  .navbar-brand { font-size: 1.1rem; }
  .nav-links { gap: 1rem; }
  .nav-notification { font-size: 1.1rem; }
  
  /* Session detail mobile */
  .attendance-code { font-size: 1.8rem; letter-spacing: .2em; padding: .75rem 1rem; }
  .code-input { font-size: 1.2rem !important; }
  
  /* Quick action cards mobile */
  .quick-action-card { padding: 1rem; }
  .quick-action-icon { font-size: 1.5rem; }
  .quick-action-title { font-size: .9rem; }
  .quick-action-desc { font-size: .8rem; }
}

/* Extra small devices (phones in portrait) */
@media(max-width:480px) {
  .main-content { padding: .75rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card { padding: .85rem; }
  .stat-number { font-size: 1.6rem; }
  
  .card { padding: .85rem; }
  .card-title { font-size: .95rem; }
  
  .page-title { font-size: 1.15rem; }
  
  table { font-size: .8rem; }
  th, td { padding: .5rem .6rem; }
  
  .btn { padding: .5rem .85rem; font-size: .8rem; }
  .btn-sm { padding: .3rem .6rem; font-size: .7rem; }
  
  .badge { font-size: .7rem; padding: .2rem .5rem; }
  
  /* DataTables compact for small screens */
  .dataTables_wrapper .dataTables_filter input {
    width: 120px;
  }
}

/* Loading Spinner */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Tooltip */
[data-tooltip] { position: relative; }
[data-tooltip]::after { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); padding: .5rem .75rem; background: var(--surface2); color: var(--text); font-size: .75rem; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
[data-tooltip]:hover::after { opacity: 1; bottom: calc(100% + 8px); }

/* DataTables Custom Styling */
.dataTables_wrapper {
  margin-top: 1rem;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  color: var(--muted);
  font-size: .85rem;
  padding: .5rem 0;
}
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  margin-left: .5rem;
  margin-right: .5rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: var(--accent);
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  margin: 0 2px;
  padding: .35rem .75rem;
  transition: var(--transition);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
  font-weight: 600;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: .5;
  cursor: not-allowed;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  background: var(--surface2);
  border-color: var(--border);
}
table.dataTable thead th {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: .85rem 1rem;
  background: var(--surface2);
  border-bottom: 2px solid var(--border);
}
table.dataTable tbody td {
  padding: .85rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
table.dataTable tbody tr:hover td {
  background: rgba(255,255,255,.02);
}
table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 1px solid var(--border);
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  background-image: none;
  position: relative;
}
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after {
  content: ' ?';
  color: var(--muted);
  opacity: .5;
}
table.dataTable thead .sorting_asc::after {
  content: ' ?';
  opacity: 1;
  color: var(--accent);
}
table.dataTable thead .sorting_desc::after {
  content: ' ?';
  opacity: 1;
  color: var(--accent);
}
.dataTables_wrapper .dataTables_info {
  padding-top: 1rem;
}
.dataTables_wrapper .dataTables_paginate {
  padding-top: 1rem;
  text-align: right;
}

/* Pending approval row styling */
.pending-row {
  background: rgba(245, 158, 11, 0.05) !important;
}
.pending-row:hover {
  background: rgba(245, 158, 11, 0.1) !important;
}

/* Student checkbox list styling */
#studentListContainer label,
#searchResults label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

#studentListContainer label:hover,
#searchResults label:hover {
  background: var(--surface2);
  border-color: var(--border);
}

#studentListContainer input[type="checkbox"],
#searchResults input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

#studentListContainer label input[type="checkbox"]:checked + div,
#searchResults label input[type="checkbox"]:checked + div {
  color: var(--accent);
}

/* Make checkbox labels more readable */
#studentListContainer .defaultlabel,
#searchResults .student-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

#studentListContainer .student-meta,
#searchResults .student-info {
  font-size: 0.85rem;
  color: var(--muted);
}
