/*
  File: style.css
  Purpose: Global styling for ANSW student-analytics application
  
  Description:
    Master stylesheet with styling for:
    - Sidebar navigation (fixed left panel)
    - Login/register forms
    - Student list with cards
    - Detail table with score badges
    - Responsive grid/flexbox layouts
    - Color coding (green/yellow/red for scores)
  
  Color palette:
    - Sidebar: #1f3b6c, #2a4f8a (blue gradient)
    - Brand: #ffdd59 (yellow)
    - Backgrounds: #e6f2ff, #f3f8ff (light blue)
    - Scores: #28a745 (green), #ffc107 (yellow), #dc3545 (red)
    - Text: #2f3f60 (dark blue), #5d6d84 (gray)
  
  Breakpoints:
    - Currently: Fixed sidebar (not responsive)
    - Future: Media queries for tablets/mobile
  
  Layout:
    - .sidebar: position:fixed, 230px width
    - .main: margin-left:250px for content offset
    - .search-panel: flex row for search/filter controls
    - .leerlingen-lijst: CSS grid for responsive cards
    - .detail-table: Standard HTML table with alternating rows
  
  Interactions:
    - .sidebar-list a:hover: Background highlight + color change
    - .leerling-item:hover: Slight lifting effect + shadow increase
    - form inputs: Rounded borders, 250px width
*/

h1 {
  text-align: center;
  color: whitesmoke;
  font-size: 60px;
}

li {
  display: inline;
}

.main {
  padding-left: 100px;
  padding-right: 100px;
  text-align: left;
  height: 100%;
}

/* ===== SIDEBAR NAVIGATION ===== */
/* Fixed left sidebar with brand and navigation menu */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background: linear-gradient(180deg, #a4c0f1, #a4c0f1);
  color: #fff;
  padding: 24px 16px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  z-index: 100;
}

/* Application branding in sidebar */
.sidebar .brand {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #305e9f;
  letter-spacing: 0.4px;
}

/* Sidebar navigation list */
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-list li {
  display: block;
}

/* Sidebar navigation links */
.sidebar-list a {
  display: block;
  color: #e8ecf3;
  text-decoration: none;
  font-size: 17px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Sidebar link hover state */
.sidebar-list a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* ===== MAIN CONTENT AREA ===== */
/* Main content container with spacer for sidebar */
.main {
  margin-left: 250px;
  padding: 28px;
  min-height: calc(100vh - 40px);
}

input {
  width: 60%;
}

/* ===== SEARCH/FILTER PANEL ===== */
/* Panel for search bar and filter dropdown */
.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 16px;
  border: 1px solid #88b4d8;
  padding: 14px;
  border-radius: 14px;
  background-color: #f3f8ff;
}

/* Search input section */
.search-input, .filter-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Search and filter input styling */
#searchInput, #klasFilter {
  padding: 10px 12px;
  border: 1px solid #93b8dc;
  border-radius: 8px;
  font-size: 16px;
  width: 250px;
}

/* ===== STUDENTS LIST ===== */
/* List of student cards */
.leerlingen-lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* Individual student card */
.leerling-item {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Student item hover state (lift effect) */
.leerling-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

/* Student item link styling */
.leerling-link {
  color: #2b4374;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
}

/* Class badge in student item */
.leerling-klas {
  color: #5d6d84;
  font-size: 16px;
}

/* ===== DETAIL TABLE STYLING ===== */
/* Table for test results */
.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.detail-table th,
.detail-table td {
  border: 1px solid #d7dbe1;
  padding: 9px 12px;
  text-align: left;
}

.detail-table th {
  background: #e9f0fb;
  color: #2f3f60;
}

/* ===== SCORE BADGES ===== */
/* Badge styling for score percentage */
.score-badge {
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  font-weight: 700;
}

/* Score low (< 50%): Red badge */
.score-laag { 
  background: #dc3545; 
}

/* Score medium (50-75%): Yellow badge */
.score-gemiddeld { 
  background: #ffc107; 
  color: #232323; 
}

/* Score good (>= 75%): Green badge */
.score-goed { 
  background: #28a745; 
}

/* ===== BUTTONS ===== */
button {
  background-color: grey;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

table {
  width: 100%;
}

td.fitwidth {
  width: 1px;
  white-space: nowrap;
}


/* ===== PAGE BACKGROUND & TYPOGRAPHY ===== */
/* Global HTML styling */
html {
  height: 100%;
  background-color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(155, 70, 70);
}

/* Link styling */
a,
a:link,
a:visited {
  color: rgb(56, 7, 7);
}

/* ===== FOOTER ===== */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: none;
  color: whitesmoke;
  text-align: center;
}

/* ===== TABLE STYLING (LEGACY) ===== */
/* Clicked row highlight */
tr.clicked {
  background-color: #abc;
}

/* Table cell styling (legacy) */
td {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  min-width: 20px;
}


/* ===== SCORE DASHBOARD STYLING ===== */
/* Moderne en responsieve dashboard layout voor score weergave */

/* DASHBOARD CONTAINER */
/* Hoofdcontainer voor het gehele dashboard met optimale breedte en margin */
.score-dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* DASHBOARD HEADER SECTIE */
/* Bovenste sectie met titel en ondertitel */
.score-dashboard-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(30, 136, 229, 0.2);
}

/* Hoofd dashboard titel */
.score-dashboard-title {
  margin: 0 0 10px 0;
  font-size: 36px;
  font-weight: 700;
  color: #1f3b6c;
  letter-spacing: -0.5px;
}

/* Dashboard subtitel */
.score-dashboard-subtitle {
  margin: 0;
  font-size: 16px;
  color: #5d6d84;
  font-weight: 400;
}

/* TOP SECTIE: TWEE KOLOMMEN LAYOUT */
/* Flexbox layout die op desktop 2 kolommen toont en op mobile 1 kolom */
.score-dashboard-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

/* DASHBOARD KAART COMPONENT */
/* Basisstijl voor alle kaarten in het dashboard */
.score-dashboard-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover effect op kaarten */
.score-dashboard-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Kaart header (titel sectie) */
.score-card-header {
  margin-bottom: 20px;
}

.score-card-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f3b6c;
}

/* GEMIDDELDE SCORE KAART SPECIFIEKE STYLING */
/* Styling voor linkerkaart met circular score weergave */
.score-dashboard-card-average {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* CIRKELWEERGAVE CONTAINER */
/* Bevat de cirkelweergave van de gemiddelde score */
.score-circular-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* CIRKEL ELEMENT */
/* De grote cirkel die het gemiddelde cijfer toont */
.score-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.3);
  position: relative;
}

/* Inner text content van cirkel */
.score-circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Grote cijfer in cirkel */
.score-circle-value {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
}

/* '/10' tekst in cirkel */
.score-circle-unit {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* VERANDERING BADGE */
/* Badge die maandelijkse voortgang toont */
.score-change-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}

/* Positieve verandering badge (groen) */
.score-change-positive {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Negatieve verandering badge (rood) */
.score-change-negative {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Pijl icon in badge */
.score-change-arrow {
  font-size: 16px;
}

.score-change-text {
  font-size: 14px;
}

/* TREND GRAFIEK KAART */
/* Rechter kaart met de trendgrafiek */
.score-dashboard-card-chart {
  display: flex;
  flex-direction: column;
}

/* Grafiek container met vaste aspect ratio */
.score-chart-container {
  flex: 1;
  min-height: 250px;
  position: relative;
  margin-top: 15px;
}

/* Canvas element styling */
#trendChart {
  max-height: 250px;
}

/* SECTIE DIVIDER EN TITEL */
/* Scheiding tussen top en bottom sectie met titel en beschrijving */
.score-dashboard-section-divider {
  margin: 45px 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(30, 136, 229, 0.2);
}

/* Sectie titel */
.score-dashboard-section-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1f3b6c;
}

/* Sectie beschrijving */
.score-dashboard-section-description {
  margin: 0;
  font-size: 15px;
  color: #5d6d84;
  font-weight: 400;
}

/* VAKKEN GRID LAYOUT */
/* Responsieve grid voor vakken kaarten met 4 kolommen op desktop */
.score-dashboard-subjects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

/* INDIVIDUELE VAK KAART */
/* Kaart voor elk vak met score en trend */
.score-subject-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #1e88e5;
  cursor: pointer;
}

/* Hover effect op vak kaarten */
.score-subject-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-top-color: #1565c0;
}

/* Vak kaart header */
.score-subject-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecf1;
}

/* Vak naam */
.score-subject-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f3b6c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Vak kaart inhoud */
.score-subject-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Score waarde */
.score-subject-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

/* Groot score getal */
.score-subject-value {
  font-size: 32px;
  font-weight: 700;
  color: #1e88e5;
}

/* '/10' achter score */
.score-subject-unit {
  font-size: 14px;
  color: #5d6d84;
  font-weight: 500;
}

/* TREND INDICATOR */
/* Toont of score omhoog of omlaag is gegaan */
.score-subject-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

/* Positieve trend (omhoog) */
.score-trend-up {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

/* Negatieve trend (omlaag) */
.score-trend-down {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* Neutrale trend (stabiel) */
.score-trend-neutral {
  background: rgba(93, 109, 132, 0.15);
  color: #5d6d84;
}

/* Trend pijl icon */
.trend-arrow {
  font-size: 14px;
}

.trend-text {
  font-size: 13px;
}

/* LEEG BERICHT */
/* Bericht wanneer geen vakken beschikbaar zijn */
.score-empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  background: rgba(30, 136, 229, 0.05);
  border-radius: 10px;
  border: 2px dashed rgba(30, 136, 229, 0.2);
}

.score-empty-state p {
  margin: 0;
  font-size: 16px;
  color: #5d6d84;
  font-weight: 500;
}


/* ===== RESPONSIVE DESIGN ===== */
/* Media queries voor tablet en mobile devices */

/* TABLET BREAKPOINT (768px en kleiner) */
@media (max-width: 1024px) {
  /* Top sectie als 1 kolom op tablet */
  .score-dashboard-top-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Vak grid: 3 kolommen op tablet */
  .score-dashboard-subjects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Titel aanpassingen voor tablet */
  .score-dashboard-title {
    font-size: 28px;
  }

  .score-dashboard-section-title {
    font-size: 24px;
  }
}

/* MOBILE BREAKPOINT (768px en kleiner) */
@media (max-width: 768px) {
  /* Container padding voor mobile */
  .score-dashboard-container {
    padding: 20px 15px;
  }

  /* Kaarten padding aanpassing */
  .score-dashboard-card {
    padding: 20px;
  }

  /* Cirkel kleiner op mobile */
  .score-circle {
    width: 140px;
    height: 140px;
  }

  .score-circle-value {
    font-size: 44px;
  }

  .score-circle-unit {
    font-size: 16px;
  }

  /* Vak grid: 2 kolommen op mobile */
  .score-dashboard-subjects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Vak kaart aanpassingen */
  .score-subject-card {
    padding: 16px;
  }

  .score-subject-value {
    font-size: 24px;
  }

  /* Titel aanpassingen voor mobile */
  .score-dashboard-title {
    font-size: 24px;
  }

  .score-dashboard-section-title {
    font-size: 20px;
  }

  /* Header margin */
  .score-dashboard-header {
    margin-bottom: 25px;
  }

  /* Sectie divider margin */
  .score-dashboard-section-divider {
    margin: 35px 0 20px 0;
  }
}

/* SMALL MOBILE BREAKPOINT (480px en kleiner) */
@media (max-width: 480px) {
  /* Dashboard container padding */
  .score-dashboard-container {
    padding: 15px 12px;
  }

  /* Kaarten padding */
  .score-dashboard-card {
    padding: 16px;
  }

  /* Cirkel nog kleiner */
  .score-circle {
    width: 120px;
    height: 120px;
  }

  .score-circle-value {
    font-size: 36px;
  }

  .score-circle-unit {
    font-size: 14px;
  }

  /* Vak grid: 1 kolom op zeer kleine mobiles */
  .score-dashboard-subjects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Vak kaart aanpassingen */
  .score-subject-card {
    padding: 14px;
  }

  .score-subject-value {
    font-size: 20px;
  }

  .score-subject-name {
    font-size: 15px;
  }

  /* Titel aanpassingen */
  .score-dashboard-title {
    font-size: 20px;
  }

  .score-dashboard-subtitle {
    font-size: 14px;
  }

  .score-dashboard-section-title {
    font-size: 18px;
  }

  .score-dashboard-section-description {
    font-size: 13px;
  }

  /* Badge aanpassingen */
  .score-change-badge {
    font-size: 13px;
    padding: 10px 12px;
  }

  /* Chart hoogte aanpassing */
  .score-chart-container {
    min-height: 200px;
  }
}

/* Table header styling (legacy) */
th {
  background-color: grey;
  color: black;
  font-size: 20px;
}

/* Clicked element ID styling */
#clicked {
  background-color: aqua;
}

/* ===== CONTAINER SCROLLING ===== */
.container {
  height: 60%;
  overflow-y: scroll;
}

/* ===== PAGE BODY (LEGACY) ===== */
/* Main body class (potentially unused) */
.main-body {
  margin: 0;
  font-family: Arial;
  background: #f5f6fa;
}

/* ===== HEADER (LEGACY) ===== */
/* Header styling */
.header {
 background: #fff;
  padding: 20px;
}

/* Header container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header title */
.title {
  margin: 0;
  font-size: 28px;
  color: #000;
}

/* Subtitle text */
.subtitle {
  margin: 5px 0;
  color: rgb(93, 89, 89);
}

/* ===== USER BOX (LEGACY) ===== */
/* User information box */
.user-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* User avatar circle */
.user-circle {
  background: #2ecc71;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
}

/* User name in box */
.user-name {
  font-size: 14px;
}

/* Body content background */
.body-content {
  background-color: #2d6f9a;
}

/* ===== FOUTENANALYSE CARDS ===== */
/* Error analysis card styling */
.fout-card {
  background: #ffffff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fout-card strong {
  font-size: 20px;
  color: #333;
}

.fout-card p {
  margin: 5px 0;
  color: #555;
}

/* ===== PAGE TITLE STYLING ===== */
h1 {
  color: #2c3e50;
}

/* ===== LOGIN/REGISTER CARD ===== */
/* Login form card container */
.login-card {
  max-width: 420px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Login form grid layout */
.login-form {
  display: grid;
  gap: 12px;
}

/* Form input styling */
.login-form input,
.login-form select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Login form button styling */
.login-form button {
  background-color: #2d6f9a;
  color: white;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 14px;
  border: none;
}

/* ===== FLASH MESSAGES ===== */
/* Flash message container */
.flash-messages {
  margin-bottom: 12px;
}

/* Individual flash message item */
.flash-item {
  background-color: #f8e1dd;
  color: #991f1d;
  border: 1px solid #d28f8f;
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
}

/* Aanbevelingen page container layout */
.aanbevelingen-container {                 /* wrapper for recommendation page sections */
  display: grid;                           /* use grid layout */
  grid-template-columns: 2fr 1fr;          /* left/right ratio */
  gap: 18px;                               /* space between grid children */
  margin-top: 22px;                        /* top margin */
}

/* Cards container */
.cards {                                   /* group of cards */
  display: grid;                           /* grid layout for cards */
  gap: 14px;                               /* gap between card blocks */
}

/* Individual card style */
.card {                                    /* single card box */
  background: #ffffff;                     /* white background */
  border-radius: 12px;                     /* rounding corners */
  padding: 14px;                           /* inner spacing */
  box-shadow: 0 6px 16px rgba(16,42,89,0.08); /* subtle shadow */
}

.card.red { border-left: 4px solid #e04949; }      /* red card indicator */
.card.purple { border-left: 4px solid #815cd5; }   /* purple card indicator */
.card.blue { border-left: 4px solid #2f80ed; }     /* blue card indicator */
.card.primary { border-left: 4px solid #1976d2; }  /* primary card indicator */

.card h3 { margin: 0 0 6px; font-size: 20px; color: #1f3257; }  /* card title */
.card p { color: #596e88; margin: 8px 0 10px; }                 /* card text */
.card .meta { color: #6a7d98; font-size: 14px; display: flex; gap: 12px; } /* meta row*/

.card .button {                                    /* card action link */
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #1f81ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.overzicht-card h2 {
  margin-top: 0;
}

.overzicht-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overzicht-links li {
  margin-bottom: 10px;
}

.overzicht-links a {
  color: #1f3b6c;
  text-decoration: none;
  font-weight: 600;
}

.overzicht-links a:hover {
  text-decoration: underline;
}

/* Right panel stats column */
.stats { display: flex; flex-direction: column; gap: 14px; }
.panel { background: #fff; border: 1px solid #d8e5f5; border-radius: 12px; padding: 10px; }
.panel h4 { margin: 0 0 8px; color: #2e4b72; }
.panel-item { margin-bottom: 8px; font-size: 15px; }

.panel.cta { background: linear-gradient(90deg, #1987f0, #0c6dd9); color: #fff; border: 0; }
.panel.cta .button { background: rgba(255,255,255,0.95); color: #1c3f7a; }

.subtext {
    color: #6b7280;
    margin-bottom: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fout-item {
    margin-bottom: 20px;
}

.fout-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progress-bar {
    background: #e5e7eb;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #4db6ac;
}

.details {
    margin-top: 10px;
    padding-left: 20px;
}

.aanbeveling {
    background: #f9fafb;
}

/*
Deze CSS is speciaal voor de Score Dashboard pagina.
Alle classes beginnen met "score-page-" om conflicten met andere pagina's te voorkomen.
De styling zorgt voor een modern dashboard met kaarten, grid layout en duidelijke visuele structuur.
*/



 /*
    Dit is de hoofdcontainer van de pagina.
    Het centreert de inhoud en geeft een lichte achtergrond.
    */
.score-page-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: #f5f7fb;
}

 /*
    Toont de titel van het dashboard.
    Maakt de titel groot en duidelijk zichtbaar.
    */
.score-page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}


    /*
    Maakt een grid layout met 2 kolommen:
    links gemiddelde score en rechts trend grafiek.
    */
.score-page-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
/*
    Standaard kaartstijl voor alle onderdelen.
    Witte achtergrond met schaduw en afgeronde hoeken.
    */
score-page-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/*
    Centreert de cirkel en inhoud verticaal en horizontaal.
    */
.score-page-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
}

 /*
    Ronde visuele score indicator.
    De score staat groot in het midden.
    */

.score-page-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 10px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

/*
    Kleine tekst onder de cirkel (/10).
    */
score-page-circle-subtext {
    margin-top: 5px;
}


/*
    Groene badge die positieve verandering toont.
    */
.score-page-badge-up {
    margin-top: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
}

 /*
    Titel voor de sectie "Score per Vak".
    */
.score-page-section-title {
    margin-top: 25px;
    margin-bottom: 10px;
}
/*
    Grid layout voor vak kaarten.
    Standaard 4 kaarten naast elkaar.
    */
.score-page-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

 /*
    Grote en duidelijke weergave van de score per vak.
    */
.score-page-value {
    font-size: 26px;
    font-weight: bold;
    margin-top: 10px;
}

/* ===== FOUTENANALYSE PAGINA ===== */
/* Deze CSS regelt de volledige styling van de foutenanalyse pagina. 
De pagina bevat een dashboard layout met grafieken, filters, aanbevelingen, progress bars en detailkaarten voor fouttypes. */

/* Hoofdcontainer van de pagina */
.fout-dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

/*
Toont de titel en subtitel van de foutenanalyse pagina.
Maakt de titel groot, duidelijk en consistent met de Score pagina design.
Heeft een subtiele blauwe rand eronder voor visuele scheiding.
*/
.fout-dashboard-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(30, 136, 229, 0.2);
}

/*
Styling voor de grote pagina titel.
Maakt de tekst groot (36px) en donkerblauw zodat het opvalt.
*/
.fout-dashboard-title {
  margin: 0 0 10px 0;
  font-size: 36px;
  font-weight: 700;
  color: #1f3b6c;
  letter-spacing: -0.5px;
}

/*
Styling voor de ondertitel onder de pagina titel.
Geeft context en uitleg over wat de leerling op deze pagina kan doen.
*/
.fout-dashboard-subtitle {
  margin: 0;
  font-size: 16px;
  color: #5d6d84;
  font-weight: 400;
}

/*
Bevat de filterkaart waarmee de leerling fouten per vak kan filteren.
Dit is een apart container element rond de filterkaart.
*/
.fout-filter-section {
  margin-bottom: 30px;
}

/*
Styling voor de filterkaart bovenaan de pagina.
Hiermee kan de leerling fouten filteren per vak.
Heeft een witte achtergrond, afgeronde hoeken en een subtiele schaduw.
*/
.fout-filter-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

/*
Styling voor de titel van de filterkaart.
Laat zien wat de dropdown is voor.
*/
.fout-filter-title {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #1f3b6c;
  font-weight: 600;
}

/*
Formulier container voor de filter dropdown.
Dit omvat het form element dat de filter bevat.
*/
.fout-filter-form {
  display: inline-block;
}

/*
Styling voor de vakselectie dropdown.
Gebruiker kan hier een vak selecteren om fouten op te filteren.
Heeft hover en focus states voor betere interactie feedback.
*/
.fout-filter-select {
  padding: 10px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #2f3f60;
  min-width: 220px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.fout-filter-select:hover {
  border-color: #1e88e5;
}

.fout-filter-select:focus {
  outline: none;
  border-color: #1e88e5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

/*
Twee-kolom grid layout voor de top sectie van de foutenanalyse pagina.
Links staat de foutendistributie grafiek, rechts het top fouten overzicht.
Op smaller schermen wordt dit een enkele kolom.
*/
.fout-dashboard-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

/*
Basisstijl voor alle kaarten in het foutenanalyse dashboard.
Dit zijn witte kaarten met afgeronde hoeken en subtiele schaduwen.
Hebben hover effecten voor betere interactie feedback.
*/
.fout-dashboard-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fout-dashboard-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/*
Header sectie van dashboard kaarten met titel.
Dit is het bovenste gedeelte van elke kaart.
*/
.fout-card-header {
  margin-bottom: 20px;
}

.fout-card-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f3b6c;
}

/*
Inhoudsgedeelte van dashboard kaarten.
Dit bevat de eigenlijke data in de kaarten.
*/
.fout-card-content {
  /* Basis styling voor kaart inhoud */
}

/*
Specifieke styling voor de foutendistributie chart kaart.
Dit is de linkerkaart in de top sectie.
*/
.fout-chart-card {
  /* Specifieke styling voor chart kaart */
}

/*
Container voor het Chart.js canvas element.
Geeft de grafiek een vaste hoogte zodat deze consistent weergegeven wordt.
*/
.fout-chart-container {
  position: relative;
  height: 280px;
  margin-top: 15px;
}

/*
Specifieke styling voor de top fouten overzicht kaart.
Dit is de rechterkaart in de top sectie.
Toont de meest voorkomende fouttypes met progress bars.
*/
.fout-overview-card {
  /* Specifieke styling voor overzicht kaart */
}

/*
Individueel progress item in de top fouten overzicht.
Elke fout krijgt één progress item met naam, aantal en een gekleurde bar.
*/
.fout-progress-item {
  margin-bottom: 22px;
}

/*
Header van progress item met naam en aantal fouten.
Toont het fouttype naam links en het aantal keer gemaakt rechts.
*/
.fout-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/*
Naam van het fouttype in het progress item.
Dit is de linkerwaarde in de progress item header.
*/
.fout-progress-name {
  font-weight: 500;
  color: #2f3f60;
  font-size: 14px;
}

/*
Aantal voorkomsten van het fouttype.
Dit is de rechterwaarde in de progress item header.
Weergegeven in rood om op te vallen.
*/
.fout-progress-count {
  font-weight: 600;
  color: #e57373;
  font-size: 14px;
}

/*
Achtergrond container voor de progress bar.
Dit is de grijze achtergrond waar de gekleurde bar in loopt.
*/
.fout-progress-bar-container {
  background: #ecf0f1;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

/*
Gekleurde progress bar die de relatieve frequentie van fouten toont.
De breedte is berekend op basis van het aantal fouten.
Heeft een gradient kleur van rood naar roze.
*/
.fout-progress-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/*
Bevat de grote aanbevelingskaart met persoonlijke verbeteradvies.
Dit is een aparte sectie met een opvallende gradient achtergrond.
*/
.fout-recommendation-section {
  margin-bottom: 40px;
}

/*
Gradient kaart met persoonlijke aanbeveling voor verbetering.
Deze kaart geeft de leerling persoonlijk advies op basis van hun fouten.
Heeft een opvallende geel-oranje gradient achtergrond.
*/
.fout-recommendation-card {
  background: linear-gradient(135deg, #ffe082 0%, #ffb74d 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
}

/*
Emoji icoon in de aanbevelingskaart.
Dit is meestal een 💡 (gloeilamp) icoon die verwijst naar tips/advies.
*/
.fout-recommendation-icon {
  font-size: 48px;
  opacity: 0.9;
  flex-shrink: 0;
}

/*
Tekstgedeelte van de aanbevelingskaart.
Dit bevat de titel en advistekst van de aanbeveling.
*/
.fout-recommendation-content {
  flex: 1;
}

/*
Titel van de aanbevelingskaart.
Bijvoorbeeld "Persoonlijke Aanbeveling".
*/
.fout-recommendation-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #2d3436;
}

/*
Advistekst in de aanbevelingskaart.
Dit is de eigenlijke aanbevelingsboodschap voor de leerling.
*/
.fout-recommendation-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

/*
Sectie met detail kaarten voor elk fouttype.
Dit bevat alle detail kaarten met uitleggen en tips per fouttype.
*/
.fout-details-section {
  margin-bottom: 40px;
}

/*
Titel voor de fout details sectie.
Dit zegt de leerling wat ze hieronder kunnen verwachten.
*/
.fout-details-section-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f3b6c;
  margin: 0 0 8px 0;
}

/*
Beschrijvende tekst voor de details sectie.
Dit geeft extra context over de detail kaarten hieronder.
*/
.fout-details-section-description {
  font-size: 14px;
  color: #5d6d84;
  margin: 0 0 24px 0;
  font-weight: 400;
}

/*
Responsieve grid layout voor de fout detail kaarten.
Automatische kolommen die zich aanpassen aan schermgrootte.
*/
.fout-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/*
Kaart die per fouttype uitleg, aantal fouten en een verbetertip toont.
Dit zijn individuele kaarten voor elk fouttype dat de leerling maakt.
Hebben een blauwe top rand en hover effecten.
*/
.fout-detail-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #1e88e5;
}

.fout-detail-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-top-color: #1565c0;
}

/*
Header van detail kaart met fouttype naam en aantal.
Dit is het bovenste gedeelte van de detail kaart.
Toont de foutnaam links en het aantal keer gemaakt rechts.
*/
.fout-detail-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
Naam van het fouttype in de detail kaart.
Dit is de linkerwaarde in de detail kaart header.
*/
.fout-detail-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f3b6c;
}

/*
Badge die het aantal keren gemaakt toont.
Dit is de rechterwaarde in de detail kaart header.
Heeft een lichtblauw achtergrond met blauw tekst.
*/
.fout-detail-count {
  background: #e3f2fd;
  color: #1e88e5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/*
Inhoudsgedeelte van detail kaart.
Dit bevat de beschrijving en tips voor het fouttype.
*/
.fout-detail-body {
  padding: 20px 24px;
}

/*
Beschrijving en uitleg van het fouttype.
Dit is de hoofdtekst die uitlegt wat dit fouttype is.
*/
.fout-detail-description {
  margin: 0 0 16px 0;
  line-height: 1.6;
  color: #555;
  font-size: 14px;
}

/*
Sectie met verbeteradvies en tips voor dit fouttype.
Dit is een speciale box met een gekleurde linkerrand.
Geeft concrete tips hoe de leerling kan verbeteren.
*/
.fout-detail-tip {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #ffb74d;
  font-size: 14px;
}

/*
Label voor de tip sectie.
Dit is meestal een icoon (💡) gevolgd door "Tip:".
*/
.fout-tip-label {
  color: #ff9800;
  font-weight: 600;
  margin-right: 8px;
}

/*
Bericht weergegeven wanneer geen fouten beschikbaar zijn.
Dit is een lege staat message voor als er geen data is.
*/
.fout-no-data {
  text-align: center;
  color: #95a5a6;
  font-style: italic;
  margin: 40px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

/*
==================================================
RESPONSIVE DESIGN FOUTENANALYSE
==================================================
Media queries zorgen ervoor dat de foutenanalyse pagina op alle schermformaten goed werkt.
Dit omvat aanpassingen voor tablets en mobiele apparaten.
*/

/*
Tablet breakpoint aanpassingen.
Aanpassingen voor schermen van 1024px en kleiner.
De twee-kolom layout wordt hier één kolom.
*/
@media (max-width: 1024px) {
  .fout-dashboard-top-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fout-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fout-dashboard-title {
    font-size: 28px;
  }

  .fout-details-section-title {
    font-size: 20px;
  }
}

/*
Mobile breakpoint aanpassingen.
Aanpassingen voor schermen van 768px en kleiner.
Layout wordt meer staand gericht en tekst kleiner.
*/
@media (max-width: 768px) {
  .fout-dashboard-container {
    padding: 20px 15px;
  }

  .fout-dashboard-card {
    padding: 20px;
  }

  .fout-recommendation-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .fout-recommendation-icon {
    flex-shrink: 1;
  }

  .fout-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fout-detail-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .fout-dashboard-title {
    font-size: 24px;
  }

  .fout-details-section-title {
    font-size: 18px;
  }

  .fout-filter-select {
    min-width: 150px;
    width: 100%;
  }

  .fout-chart-container {
    height: 240px;
  }
}

/*
Zeer kleine mobile breakpoint aanpassingen.
Aanpassingen voor zeer kleine schermen van 480px en kleiner.
Verdere aanpassingen voor compacte weergave.
*/
@media (max-width: 480px) {
  .fout-dashboard-container {
    padding: 15px 10px;
  }

  .fout-dashboard-card {
    padding: 15px;
  }

  .fout-card-header h2 {
    font-size: 16px;
  }

  .fout-dashboard-title {
    font-size: 20px;
  }

  .fout-details-section-title {
    font-size: 16px;
  }

  .fout-recommendation-title {
    font-size: 18px;
  }

  .fout-recommendation-text {
    font-size: 14px;
  }
}

/*
    Groene kleur voor positieve score verandering.
    */
.score-page-up {
    color: #2e7d32;
}



    /*
    Rode kleur voor negatieve score verandering.
    */

.score-page-down {

    color: #c62828;
}


    /*
    Responsive design voor tablets en mobiele apparaten.
    Zet alle grids onder elkaar.
    */

@media (max-width: 900px) {
    .score-page-top-grid,
    .score-page-bottom-grid {
        grid-template-columns: 1fr;
    }
}
.dashboard {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-circle {
    background: teal;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.score-circle {
    font-size: 32px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-card {
    display: flex;
    justify-content: space-between;
}

.star.filled {
    color: gold;
}

.progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 5px;
}

.progress {
    background: red;
    height: 100%;
}
.dashboard {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-circle {
    background: teal;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.score-circle {
    font-size: 32px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-card {
    display: flex;
    justify-content: space-between;
}

.star.filled {
    color: gold;
}

.progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 5px;
}

.progress {
    background: red;
    height: 100%;
}
.dashboard {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-circle {
    background: teal;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.score-circle {
    font-size: 32px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-card {
    display: flex;
    justify-content: space-between;
}

.star.filled {
    color: gold;
}

.progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 5px;
}

.progress {
    background: red;
    height: 100%;
}.dashboard {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-circle {
    background: teal;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.score-circle {
    font-size: 32px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-card {
    display: flex;
    justify-content: space-between;
}

.star.filled {
    color: gold;
}

.progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 5px;
}

.progress {
    background: red;
    height: 100%;
}.dashboard {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-circle {
    background: teal;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.score-circle {
    font-size: 32px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-card {
    display: flex;
    justify-content: space-between;
}

.star.filled {
    color: gold;
}

.progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 5px;
}

.progress {
    background: red;
    height: 100%;
}

/* ===== GLOBAL RESPONSIVE ENHANCEMENTS ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img, svg, canvas, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.sidebar {
  overflow-x: hidden;
  overflow-y: auto;
}

.main {
  margin-left: 250px;
  padding: 28px;
  min-height: calc(100vh - 40px);
}

.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

#searchInput, #klasFilter {
  max-width: 100%;
  width: 250px;
}

.leerlingen-lijst {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

td, th {
  word-wrap: break-word;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
}

@media (max-width: 1024px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    padding: 18px 14px;
  }

  .main {
    margin-left: 0;
    padding: 22px 16px 30px;
  }

  .sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .sidebar-list li {
    width: auto;
  }

  .score-dashboard-top-section,
  .score-page-top-grid,
  .cards,
  .aanbevelingen-container {
    grid-template-columns: 1fr;
  }

  .score-dashboard-subjects-grid,
  .score-page-bottom-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .search-panel {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .sidebar-list {
    flex-direction: column;
    gap: 8px;
  }

  .main {
    padding: 18px 12px 24px;
  }

  .search-panel {
    flex-direction: column;
    align-items: stretch;
  }

  #searchInput,
  #klasFilter,
  .login-form input,
  .login-form select,
  .login-form button {
    width: 100%;
    max-width: 100%;
  }

  .score-dashboard-subjects-grid,
  .score-page-bottom-grid,
  .cards,
  .aanbevelingen-container {
    grid-template-columns: 1fr;
  }

  .score-dashboard-title,
  .score-dashboard-section-title,
  .score-page-title,
  .score-page-section-title,
  .fout-dashboard-title {
    font-size: 1.5rem;
  }

  footer {
    position: relative;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 14px 10px 20px;
  }

  .search-panel,
  .sidebar-list,
  .score-dashboard-subjects-grid,
  .score-page-bottom-grid,
  .cards,
  .aanbevelingen-container {
    gap: 12px;
  }

  .score-dashboard-card,
  .score-page-card,
  .fout-dashboard-card,
  .card,
  .login-card {
    padding: 16px;
  }

  .score-circle {
    width: 120px;
    height: 120px;
  }

  .score-circle-value,
  .score-subject-value,
  .score-page-value {
    font-size: 1.75rem;
  }

  .sidebar {
    padding: 16px 12px;
  }
}
