
/* =========================
   BASIS RESET Voor Kleuren
========================= */


:root {
    color-scheme: dark;
    --font-sans: "Space Grotesk", "Segoe UI", "Helvetica Neue", sans-serif;
    --font-display: "Sora", "Space Grotesk", "Segoe UI", sans-serif;

    --navbar-height: 50px;
    --sidebar-width: 150x;
    --sidebar-collapsed-width: 0px;

    --content-max: 1120px;
    --content-wide: 1280px;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 44px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --shadow-soft: 0 10px 24px rgba(0,0,0,0.25);
    --shadow-strong: 0 18px 40px rgba(0,0,0,0.35);
    /* Primair – gaan / doorgaan */
    --primary: #007acc;
    --primary-soft: rgba(0, 122, 204, 0.25);

    /* Behoud / bevestiging */
    --success: rgba(80, 200, 120, 0.35);

    /* Onderbreking / fout */
    --error: rgba(255, 90, 90, 0.35);

    /* Neutrale basis */
    --bg-main: #0b0f14;
    --bg-panel: rgba(20, 22, 28, 0.72);
    --bg-dark: #0b0d12;
    --bg-glass: rgba(12, 14, 18, 0.62);


    --text-main: #e5e7eb;
    --text-soft: #a3a8b3;

    --input-bg: rgba(255,255,255,0.06);
    --input-bg-focus: rgba(255,255,255,0.12);
    --input-text: #f1f5f9;
    --input-placeholder: #9aa3af;
    --input-border: rgba(255,255,255,0.16);

    --border-soft: rgba(255,255,255,0.12);

   /* override */
   /* Selectie / highlight (centrale kleur) */
--primary-rgb: 0, 122, 204;
--select-border: rgba(var(--primary-rgb), 0.55);
--select-ring: rgba(var(--primary-rgb), 0.18);
--select-bg: rgba(var(--primary-rgb), 0.06);
         
}

label strong {
     font-weight: 600; /* geen kleur nodig */
     background: transparent;
     color: inherit;

    }   

select {
    background: rgba(0,0,0,0.28);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.12);
}

option {
    background: #1a1a1a; /* fallback voor native dropdown */
    color: var(--text-main);
}



/* Zonder dit lijkt een input “donker” zelfs als hij dat niet is. */
::placeholder {
    color: var(--input-placeholder);
}



/* =========================
   BASIS RESET VOOR ALLE ELEMENTEN
========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   HTML & BODY
========================= */
html, body {
    min-height: 100%;
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    background-image:
        radial-gradient(1200px 600px at 8% -10%, rgba(0, 122, 204, 0.14), transparent 55%),
        radial-gradient(900px 500px at 90% 10%, rgba(16, 185, 129, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(15, 17, 22, 0.95) 0%, rgba(10, 12, 16, 1) 100%);
    color: var(--text-main);         
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;

    /* Zorg dat alle content onder de navbar begint */
    padding-top: var(--navbar-height);
}

:fullscreen body {
    overflow: hidden;
}

.focus-shell {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-main);
    display: none;
}

.focus-shell.active {
    display: block;
}

.focus-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--bg-main);
}

html.focus-mode,
body.focus-mode {
    overflow: hidden;
}

/* =========================
   LINKS EN LIJSTEN
========================= */
a {
    /* color: #9cc7ff;  */
    text-decoration: none;
}
a:hover {
    color: #cfe3ff;
}

ul, ol {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   HEADINGS
========================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* =========================
   FORM ELEMENTEN
========================= */
input, button, textarea, select {
    font-family: inherit;
    font-size: 100%;
    background: var(--input-bg);
    color: var(--input-text);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
}

input:focus, textarea:focus, select:focus, button:focus {
    outline: 1.5px solid #888888;
    outline-offset: 2px;
    box-shadow: 0 0 4px rgba(136,136,136,0.5);
    border: 1px ;
    transition: outline 0.2s ease, box-shadow 0.2s ease;
    background: var(--input-bg-focus);
    color: var(--input-text);
}

/* =========================
   AFBEELDINGEN EN MEDIA
========================= */
img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================
   TABELLEN
========================= */
table {
    border-collapse: collapse;
    border-spacing: 0;
    background: #1f1f1f;
    /* color: #ddd; */
}
td, th {
    padding: 8px 12px;
    border: 1px solid #333;
}

/* =========================
   LUXE DONKERE SCROLLBAR
========================= */
/* Webkit-browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
    border: 2px solid #141414;
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #555 #141414;
}

/* =========================
   CONTENT WRAPPER (OPTIONEEL)
========================= */
.content-wrapper {
    height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
    box-sizing: border-box;
}

.page-content {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-5) var(--space-6);
}

.page-content p {
    max-width: 72ch;
    color: var(--text-soft);
}

/* =========================
   DROPDOWNS
========================= */
.dropdown {
    display: flex;
    gap: 0px;
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    /* color: #d4d4d4; */
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-btn:hover {
    background: #3a3d41;

}



/* =========================
   VRAGENLIJST LAYOUT
========================= */
.question-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.question-text {
    font-size: 16px;
}

.btn-yes {
     background-color: var(--primary-soft);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-yes:hover {
    background-color: #218838;
}

.btn-no {
    background-color: rgba(255,255,255,0.08);
    color: var(--text-soft);
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-no:hover {
    background-color: #2333c8;
}

/* =========================
   GLASS BASE (UNIFORM)
========================= */
.glass {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}


