







    .input-container {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      margin-top: 10px;
    }

    .input-field {
      width: 75%;
      padding: 10px;
      font-size: 16px;
      border: 2px solid #ccc;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .input-field:focus {
      border-color: #4CAF50;
      outline: none;
    }

    .send-button {
      width: 20%;
      padding: 10px;
      background-color: #FF007F;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-left: 10px;
    }

    .send-button:hover {
      background-color: #ff0066;
    }


/* Tekst van de definities in de popups */
.definition-content p {
  font-family: 'Open Sans', sans-serif;  /* Open Sans als lettertype */
  font-size: 13px;  /* Kleinere tekst dan de rest van de pagina */
  color: #333333;  /* Donkergrijze kleur */
  line-height: 1.5;  /* Zorg voor een aangename regelafstand */
}
    .options {
      display: inline-block;
      background-color: #ff007f;
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      margin: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .options:hover {
      background-color: #ff0066;
    }

    .hidden {
      display: none;
    }

    .bubble-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: 10px 10px;
    }

    .bubble {
      background-color: #ADD8E6;
      color: black;
      font-weight: bold;
      padding: 15px 30px;
      border-radius: 30px;
      cursor: pointer;
      font-size: 13px;
      transition: all 0.3s ease;
      flex: 1 1 22%;
      margin: 3px;
      text-align: center;
    }

    .bubble:hover {
      background-color: #588BAE; 
    }

    .bubble img {
      max-width: 45px;  
      max-height: 50px;
      vertical-align: middle;
    }

    .bubble-text {
      margin-top: 10px;
      font-size: 14px;
    }



/* Zorgt er voor dat de knop en de tekst correct worden gestapeld */
.container {
  display: flex;
  flex-direction: column; /* Stapelt de knop en tekst onder elkaar */
  align-items: center; /* Centreert alles netjes */
  gap: 0px; /* Verwijdert de extra ruimte tussen knop en tekst */
  width: 100%; /* Zorgt dat de container geen extra ruimte creëert */
  margin: 0;
  padding: 0;
}

.start-knop {
  background-image: url("Images/ZwarteKnop.png");
  background-size: cover; /* Zorgt dat de afbeelding de knop volledig vult */
  background-position: center;
  background-repeat: no-repeat;

  width: 250px; /* Kleinere breedte */
  height: 60px; /* Kleinere hoogte */

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-weight: bold;
  font-size: 14px;
  text-align: center;

  border: none;
  padding: 0;
  margin: 0; /* Verwijdert extra ruimte */
  cursor: pointer;


}

.start-knop:hover {
  opacity: 0.8;
}

.start-knop img {
  display: none; /* Verberg de afbeelding binnen de knop */
}

.start-knop-text {
  font-size: 14px;
  text-align: center;
  margin: 0; /* Verwijdert extra ruimte onder de knop */
  padding: 0; /* Verwijdert extra padding */
}








.spacer {
      margin-top: 20px;
    }

    /* Disclaimer stijl */
    .disclaimer {
      font-size: 12px;
      color: #808080;
      background-color: #f0f0f0;  /* Lichtgrijs tekstvak voor disclaimer */
      padding: 10px 10px;  /* Ruimte rondom de tekst verder verkleind */
      border-radius: 0px;
      margin: 5px 10px;
      }
.disclaimer p {
    margin: 0; /* Verwijdert de standaard witregel */

    }

/* Zwart tekstvak */
.zwart-tekstvak {
    font-size: 14px;
    color: #ffffff;
    background-color: #333333;  /* Zwart tekstvak */
    padding: 3px 20px;  /* Ruimte rondom de tekst */
    border-radius: 0px;
    margin: 2px 0px;
    
    
    /* Tekst in het midden uitlijnen */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .welcome-text {
      font-size: 24px;  /* Vergrote eerste zin */
      font-weight: bold;
      color: #000000;
    }

    .first-sentence {
      color: #000000;
      font-size: 14px;  /* Kleinere tekst voor de tweede zin */
      font-weight: normal;
    }






    .definition-container {
max-width: 600px; /* Zorgt er voor dat hij niet té breed wordt op grote schermen */
margin: 20px auto 0 auto; /* Centreert de container horizontaal, margintop op 20 en bottom op 0 */
  position: relative; /* Zorgt er voor dat het icoontje gepositioneerd kan worden binnen de container */
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
width: 80%;
align: center;
}

/* Het cirkeltje met het definitie icoontje */
.definition-container::before {
  content: "";
  position: absolute;
  top: -10px; /* Boven de container */
  left: 10px; /* Afstand vanaf de linkerzijde */
  width: 50px; /* Grootte van het cirkeltje */
  height: 50px;
  background-image: url("Images/Naslagwerk.png"); 
    background-size: 70%; /* Zorgt dat de afbeelding kleiner wordt weergegeven */
    display: flex;
    align-items: center;
    justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white; /* Achtergrondkleur van de cirkel */
  border: 1px solid #000000; /* Optioneel: een subtiele rand */
  border-radius: 50%; /* Maakt het cirkelvormig */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Optionele schaduw */
}

    .definition-bubble {
      background-color: #eff2f3;
      color: black;
      padding: 10px 10px 10px 40px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.3s ease;
      flex: 1 1 45%;
      margin: 5px;
      text-align: center;
    }

    .definition-bubble:hover {
      background-color: #e5e5e5;
    }

    .definition-icon {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #000000;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-weight: bold;
    }

    .definition-content {
      display: none;
  text-align: justify; /* Tekst uitgevuld */
      background-color: #ffffff;
      padding: 10px 20px 10px 20px;
      border-radius: 0px;
      margin-top: 10px;
    }

    .definition-content p {
      margin: 0;
    }

    .plus-minus {
      cursor: pointer;
      font-weight: bold;
      font-size: 16px;
      margin-top: 10px;
    }


.answer-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.answer-option {
  background-color: #588BAE;
  color: white;
  padding: 8px 25px; /* Kleinere padding om de bubbels kleiner te maken */
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px; /* Kleinere tekst om de bubbels compacter te maken */
  transition: all 0.3s ease;
  margin: 5px; /* Ruimte tussen de bubbels */
  text-align: center;
  min-width: 100px; /* Minimale breedte voor de bubbels */
}

.answer-option:hover {
  background-color: #ADD8E6;
}



.vertical-answer-options {
  display: flex;
flex-direction: column;
  justify-content: center; /* Plaatst de bubbels in het midden */
  margin: 0px auto;
width: 60%;
  gap: 2px; /* Verklein de ruimte tussen de bubbels */
}

.vertical-answer-option {
  background-color: #588BAE;
  color: white;
  padding: 5px 5px; /* Kleinere padding om de bubbels kleiner te maken */
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px; /* Kleinere tekst om de bubbels compacter te maken */
  transition: all 0.3s ease;
  margin: 2px 0; /* Ruimte tussen de bubbels */
  text-align: center;
  min-width: 100px; /* Minimale breedte voor de bubbels */
}

.vertical-answer-option:hover {
  background-color: #ADD8E6;
}


    .message {
      margin: 0px;
    }

    /* Stijl voor de exportknoppen */
    .export-buttons {
      display: flex;
      justify-content: center; /* Knoppen dicht bij elkaar */
    margin: 0px 0px; 
	padding-top: 5px;
}
    

    .export-buttons button {
      background-color: lightgray;
      color: #333;
      padding: 5px 20px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
      border: none;
      transition: background-color 0.3s;
      margin: 0 5px; /* Knoppen dichter bij elkaar */
    }

    .export-buttons button:hover {
      background-color: #cccccc;
    }

    /* Kleinere tekst voor de tweede zin */
    .small-text {
      font-size: 14px;
      font-weight: normal;
    }



.explanation {
font-size: 14px;
color: #555555;
border: 1px solid #ccc; /* 1px dikke, doorlopende zwarte rand */
padding: 10px 30px;
border-radius: 10px;
margin-top: 10px;
 background-color: #fff;
text-align: justify; /* Tekst uitgevuld */
}

/* Container voor vraag en cirkel met vraagteken */
    .question-container {
        margin-top: 0 !important;
      position: relative;
      background-color: #f4f4f4;
      padding: 20px;
      border-radius: 10px;
      font-size: 16px;
      color: #333;
    border: 1px solid #ccc;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* De cirkel boven de vraag met het vraagteken */
    .question-icon {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #000000;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-weight: bold;
    }

    /* Vraagtekst in het vak */
    .question-text {
      margin-top: 10px;
      text-align: center;

    }


.go-back-text {
  font-size: 12px;
  color: #588BAE; 
  cursor: pointer;
  text-align: center;
  margin-top: 10px;

}

.go-back-text:hover {
  text-decoration: underline;
}

/* drie afbeeldingen in element 1 */
.info-section {
    display: flex;
    justify-content: center;  /* Centreert de afbeeldingen */
    gap: 40px;  /* Ruimte tussen de afbeeldingen */
    margin: 5px 0;  /* Ruimte boven en onder */
}

.info-box {
    text-align: center; /* Tekst onder de afbeelding centreren */
    max-width: 100px; /* Zorgt dat alle elementen even groot blijven */
}

.info-box img {
    width: 100%; /* Past de afbeelding aan aan de max-width */
    height: auto; /* Houdt de verhoudingen correct */
    border-radius: 10px; /* Optioneel: afgeronde hoeken voor een mooiere look */

}

.info-box p {
    font-size: 11px;
    font-weight: bold;
    margin-top: 5px;
    color: #333; /* Donkere tekst voor goede leesbaarheid */
}
.vraag-tekstvak {
  background-color: black; /* Zwarte achtergrond */
  color: white; /* Witte tekstkleur */
  font-size: 16px; /* Tekstgrootte van 16px */
  padding: 10px; /* Binnenruimte rondom de tekst */
  border-radius: 10px 10px 0 0; /* onder 0 boven 10 */
}

.subvraag-tekstvak   {
background-color: #444444;
color: white;
font-size: 14px;
padding: 0px 20px 10px 20px;
  border-radius: 0px 0px 10px 10px; /* Bovenkant 10px, onderkant 0px */
}
  
.bron {
color: #555555;
font-size: 11px;
}

.linkjes   {
color: blue; 
text-decoration: underline; 
cursor: pointer;
}

.opmerkingvooraf {
  background-color: #fff8c4; /* Lichtgeel */
  color: #333; /* Donkere tekst voor leesbaarheid */
  padding: 3px 15px 3px 40px;
  border-radius: 8px;
  border: 1px solid #e6d96b; /* Subtiele rand */
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  width: 90%; /* Breedte op 75% */
  margin: 15px auto; /* Centreert het tekstvak */
}

.opmerkingvooraf::before {
  content: "!";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -12px; /* Zorgt dat de cirkel half in de box valt */
  width: 24px;
  height: 24px;
  background-color: #e6d96b; /* Geel zoals de rand */
  color: #333;
  font-weight: bold;
  border-radius: 50%;
  border: 2px solid #b8a841;
  font-size: 14px;
}

.knip {
  background-color: #fff8c4; /* Lichtgeel */
  color: #333; /* Donkere tekst voor leesbaarheid */
  padding: 10px 15px 10px 40px;
  border-radius: 8px;
  border: 1px solid #e6d96b; /* Subtiele rand */
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 90%; /* Breedte op 90% */
  margin: 15px auto; /* Centreert het tekstvak */
  flex-wrap: nowrap; /* Voorkomt dat de inhoud in kolommen splitst */
  white-space: normal; /* Zorgt ervoor dat tekst correct afbreekt */
}

























/* VANAF HIER DE EXTERNE STYLESHEET */
:root {
  --home-top-space: 20px;
 --bg: #05080c;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: #d7e0e8;
  --accent: #588BAE;
  --accent-soft: #e9f3f9;
  --accent-strong: #2f6d95;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

html, body {
  min-height: 100vh;
   background: #05080c;
}


#mobile-home-end {
  height: 0;
}

html, body {
  min-height: 100vh;
  margin: 0;
}

body {
   font-family: 'Open Sans', sans-serif;  /* Open Sans als lettertype */
  display: block !important;
  box-sizing: border-box;
  margin: 0;
  padding: 20px 0px 0;
  background-color: #05080c;
  background-image: url("Images/background.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
}
ul {
  list-style-type: square;
}
ul li::marker {
  color: #588BAE; /* Alleen de opsommingstekens kleuren */
}
ul li {
  color: #555555; /* Tekst blijft zwart */
}

@media (min-width: 900px) {
  body {
    background-image: url("Images/backgrounddesktop.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body, p, li, .question-text, .explanation, .definition-content, .disclaimer {
  line-height: 1.65;
}

.home-screen .site-brand {
  margin-top: var(--home-top-space);
}

.site-brand {
  margin-top: 0;
  transition: margin-top 0.25s ease;
}



/* ===== Brand title ===== */
.site-brand {
  width: min(1200px, 100%);
margin: 0 0 6px 0;
  padding-inline: 6px;
}

.site-brand-inner {
  display: flex;
  align-items: flex-end;
  min-height: 28px;
}

.site-brand-wordmark {
  display: inline-block;
  font-family: "Comfortaa", sans-serif;
 font-size: clamp(1.8rem, 1.2rem + 1.2vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
   text-shadow:
    0 1px 3px rgba(0,0,0,0.35),
    0 0 1px rgba(0,0,0,0.25);
}

.site-brand-accent {
  color: var(--accent-strong);
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.brand-link:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .site-brand {
    margin-bottom: 4px;
    padding-inline: 4px;
  }
}

@media (max-width: 640px) {
  .index-container,
  .chat-container {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    overflow: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .chat-box {
    display: block !important;
    flex: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding-top: 6px !important;
  }

  .site-brand {
    width: 100%;
    margin-bottom: 4px;
    padding-inline: 2px;
    margin-top: 6px;
  }

  .site-brand-wordmark {
    font-size: 1.62rem;
    letter-spacing: -0.03em;
  }
}

.tool-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  width: min(1200px, 100%);
  margin: 0 auto 6px auto;
  padding-left: 6px;
  color: var(--text);
}

.tool-eu {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  color: #88cdf8;
}

.chat-container {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: min(1200px, 100%) !important;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 !important;
  border: 1px solid rgba(88, 139, 174, 0.16);
  border-radius: 24px;
  background: transparent !important;
backdrop-filter: none;
  box-shadow: var(--shadow) !important;
  overflow: visible;
  display: block;
  height: auto;
  padding: 10px;
  background-color: #fafafa;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  transform: none;
}

.index-container {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: min(1200px, 100%) !important;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 !important;
  border: none;
  border-radius: 24px;
  background: transparent !important;
backdrop-filter: none;
  box-shadow: var(--shadow) !important;
  overflow: visible;
  display: block;
  height: auto;
  padding: 10px;
  background-color: #fafafa;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  transform: none;
}

.chat-box {
  border: 0 !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.96) 100%) !important; 
  /* background: transparent !important; */
     padding-top: 6px !important;
    color: #333333;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
  overflow: visible;
  display: block;
    scroll-behavior: smooth;
}

.message {
  padding-inline: clamp(14px, 3vw, 30px);
}

.question-container,
.definition-container {
  width: min(760px, 100%);
  margin: 20px auto !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  background: var(--surface) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
}

.question-container {
  padding: 22px 22px 18px !important;
}

.question-icon,
.definition-icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 19px !important;
  top: -19px !important;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.22);
}

.question-text {
  margin-top: 0 !important;
  text-align: left !important;
}

.vraag-tekstvak {
  font-size: 1.08rem !important;
  line-height: 1.45;
  padding: 14px 18px !important;
  border-radius: 14px 14px 0 0 !important;
  letter-spacing: 0.01em;
}

.subvraag-tekstvak {
  font-size: 0.98rem !important;
  line-height: 1.55;
  padding: 8px 18px 14px !important;
  border-radius: 0 0 14px 14px !important;
}

.explanation,
.definition-content,
.disclaimer,
.knip,
.opmerkingvooraf,
.zwart-tekstvak {
  border-radius: 16px !important;
}

.explanation,
.definition-content,
.disclaimer {
  padding: 16px 18px !important;
  background: var(--surface-soft) !important;
  border: 1px solid var(--line) !important;
  color: var(--text) !important;
  text-align: left !important;
}

.definition-content {
  margin-top: 12px !important;
}

.explanation p,
.definition-content p,
.disclaimer p,
.knip p,
.opmerkingvooraf p,
.question-text > p,
.question-text li,
.question-text ul,
.zwart-tekstvak p {
  max-width: 100ch;
  margin-left: auto;
  margin-right: auto;
}

.explanation ul,
.definition-content ul,
.question-text ul {
  padding-left: 1.25rem;
}

.zwart-tekstvak {
  max-width: 760px;
  margin: 18px auto 14px !important;
  padding: 20px 18px !important;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

.zwart-tekstvak p {
  margin: 6px auto 0;
  color: rgba(255,255,255,0.92);
}

.start-knop {
  width: auto !important;
  min-width: 240px;
  height: auto !important;
  padding: 14px 26px !important;
  border-radius: 999px;
  background-image: none !important;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%) !important;
  box-shadow: 0 10px 24px rgba(47, 109, 149, 0.28);
  font-size: 15px !important;
}

.start-knop:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
}

.info-section {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
  max-width: 760px;
  margin: 6px auto 18px !important;
  padding-inline: 14px;
}

.info-box {
  max-width: none !important;
  background: var(--surface) !important;
border: 0.5px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 16px 12px 12px;
  box-shadow: 0 5px 10px rgba(15, 23, 42, 0.05);
}

.info-box img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
}

.info-box p {
  font-size: 0.84rem !important;
  line-height: 1.45;
  margin-top: 10px !important;
}

.bubble-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px !important;
  max-width: 760px;
  margin: 0 auto 18px !important;
  padding-inline: 14px;
}

.bubble,
.definition-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 128px;
  padding: 18px 16px !important;
  border-radius: 18px !important;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.bubble {
  background: linear-gradient(180deg, #f3f9fc 0%, #e8f2f8 100%);
  color: var(--text);

  border: 1px solid rgba(88, 139, 174, 0.25);

  box-shadow:
    0 4px 10px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.bubble:hover {
  transform: translateY(-2px);

  border-color: rgba(88, 139, 174, 0.45);

  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.10),
    0 3px 6px rgba(15, 23, 42, 0.05);
}

.bubble img {
  max-width: 50px !important;
  max-height: 50px !important;
}

.bubble-text,
.definition-bubble {
  font-size: 0.95rem !important;
  line-height: 1.45;
}

.answer-options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px auto 0 auto !important;
  padding-inline: 0 !important;
  width: min(760px, 100%);
}


.answer-option,
.vertical-answer-option {
  min-width: 140px !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%) !important;
  box-shadow: 0 8px 20px rgba(47, 109, 149, 0.22);
}

.vertical-answer-options {
  width: min(460px, calc(100% - 32px)) !important;
  gap: 8px !important;
}

.vertical-answer-option {
  text-align: center;
}

.answer-option:hover,
.vertical-answer-option:hover {
  background: linear-gradient(135deg, #3b7fa8 0%, #73a8cb 100%) !important;
}

.go-back-text {
  margin-top: 14px !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  color:#ffffff;
}

.definition-container::before {
  top: -20px !important;
  left: 22px !important;
  width: 44px !important;
  height: 44px !important;
  background-size: 58% !important;
  border-color: var(--line) !important;
}

.opmerkingvooraf,
.knip {
  width: auto !important;
  max-width: 68ch;
  margin: 18px auto !important;
  padding: 12px 16px 12px 42px !important;
  font-size: 0.94rem !important;
  line-height: 1.55;
}

.bron {
  display: block;
  margin-top: 12px;
  color: var(--muted) !important;
}

.linkjes {
  color: var(--accent-strong) !important;
}

#nav-placeholder {
  position: relative;
  z-index: 20;
}

.navbar {
  background: rgba(17, 24, 39, 0.94) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

@media (max-width: 900px) {
  body {
    padding-top: 20px;
  }

  .chat-container {
    height: auto !important;
    max-height: none !important;
    border-radius: 20px;
  }

  .chat-box {
    border-radius: 20px !important;
  }

  .info-section,
  .bubble-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding: 20px 10px 0px;
  }

.chat-container {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 18px;
}
  .chat-box {
    padding-top: 6px;
  }

  .message {
    padding-inline: 8px;
  }

  .question-container,
  .definition-container {
    width: 92%;
    margin: 10px auto !important;
  max-width: 760px;
  
  padding-inline: 14px !important;
  }

  .info-section,
  .bubble-container {
    grid-template-columns: 1fr;
    gap: 12px !important;
    padding-inline: 8px;
  }

  .bubble,
  .definition-bubble {
    min-height: 0;
  }

  .bubble {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    text-align: left !important;
    padding: 14px 16px !important;
  }

  .bubble img {
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    object-fit: contain;
    margin: 0 !important;
  }

  .bubble-text {
    margin-top: 0 !important;
    text-align: left !important;
    flex: 1 1 auto;
  }

.answer-option,
.vertical-answer-option {
  width: 100%;
  margin: 5px 0;
  box-sizing: border-box;
}

.answer-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 92%;
  margin: 10px auto 0 auto !important;
  padding: 0 !important;
}

  .vertical-answer-options {
    width: calc(100% - 24px) !important;
  }

  .vraag-tekstvak,
  .subvraag-tekstvak,
  .explanation,
  .definition-content,
  .disclaimer,
  .zwart-tekstvak {
    text-align: left !important;
  }
}


/* Fix voor uitklapbare definities: compacter paneel + icoon altijd erboven */
.definition-container {
  position: relative !important;
  overflow: visible !important;
  padding-top: 18px !important;
}

.definition-container::before {
  z-index: 6 !important;
  pointer-events: none;
}

.definition-bubble,
.definition-content {
  position: relative;
  z-index: 1;
}

.definition-bubble {
  min-height: 0 !important;
  padding: 14px 18px 14px 62px !important;
  text-align: left !important;
}

.definition-content {
  margin: 8px 14px 14px !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  max-height: min(34vh, 320px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.definition-content p,
.definition-content li {
  max-width: 60ch;
}

@media (max-width: 640px) {
  .definition-container {
    padding-top: 16px !important;
  }

  .definition-container::before {
    left: 18px !important;
    width: 40px !important;
    height: 40px !important;
    top: -18px !important;
  }

  .definition-bubble {
    padding: 12px 14px 12px 56px !important;
  }

  .definition-content {
    margin: 8px 8px 10px !important;
    max-height: min(38vh, 300px);
  }
}
.info-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

/* Verberg standaard summary-pijltje in alle browsers */
summary.info-accordion-toggle::-webkit-details-marker {
  display: none;
}

summary.info-accordion-toggle::marker {
  content: "";
  display: none;
}
.info-accordion-title-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.info-accordion-title {
  display: inline;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  padding: 10px;
}

.info-accordion-arrow {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(88, 140, 174, 0.564);
  position: relative;
}

.info-accordion-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  transform-origin: center;
  margin-right: 2px;
}

/* open = pijltje omlaag */
.info-accordion[open] .info-accordion-arrow::before {
  transform: rotate(45deg);
  margin-right: 0;
  margin-top: -2px;
}

.info-accordion-toggle {
  width: auto;
}

@media (max-width: 640px) {
  .bubble-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-inline: 8px;
  }

  .bubble {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    min-height: 0 !important;
  }

  .bubble img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    flex: 0 0 42px !important;
  }

  .bubble-text {
    flex: 1 !important;
    margin-top: 0 !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }
}
@media (max-width: 640px) {

  .info-section {
    grid-template-columns: 1fr !important;
  }

  .info-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(88,139,174,0.18);
  }

  .info-box img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    object-fit: contain !important;
    margin: 0 !important;
    flex: 0 0 42px !important;
  }

  .info-box p {
    margin: 0 !important;
    flex: 1 !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }

}
.start-knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
.start-knop::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.start-knop:hover::after {
  transform: translateX(4px);
}






















