    :root {
        --bg-color: #E9F1E2;
        --accent: #0b4f2f;
        --accent-soft: rgba(11, 79, 47, 0.25);
        --text-main: #0b1b12;
        --text-muted: #4f5b55;
 --glass-bg: rgba(255, 255, 255, 0.1);   /* was 0.18 */
 --glass-border: rgba(255, 255, 255, 0.75); /* iets sterker randje */

    }

    * {
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;

    /* FOTO + DIMLAAG allebei fullscreen én fixed */
    background-image: 
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("../images/radarmaarssen240-zwart.gif");
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;

    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/*
    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
        background: radial-gradient(circle at top left, #f6fff5 0, var(--bg-color) 45%, #c0d4c3 100%);
        color: var(--text-main);
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
*/
    .page-wrapper {
        min-height: 100vh;
        width: 100%;
        max-width: 1100px;
        padding: 0.7rem 1.25rem 0.1rem;
        text-align: center;
    }

    .page-wrapper img {
        max-width: 100%;
        height: auto;
    }

    h1, b {
        color: var(--accent);
    }

    .subtitle {
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    .table-wrapper {
        margin: 0.5rem auto 0.5rem;
        max-width: 1000px;
        width: 100%;
        overflow-x: auto;
        padding: 0.2rem;
    }

  .glass-table {
    width: auto;              /* breedte = inhoud */
    max-width: 100%;          /* voorkomt overflow */
    margin: 0 auto;           /* centreert */
    border-collapse: separate;
    border-spacing: 0.9rem;
    background: var(--glass-bg);
    border-radius: 1.5rem;
    padding: 0.1rem 0.2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(5px) saturate(140%);
    border: 1px solid var(--glass-border);
	
}

    .glass-table tr {
        /* desktop: normale rijen */
    }

    .glass-table td {
        border-radius: 1rem;
        padding: 0.9rem 0.75rem 0.6rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: #E9F1E2;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        text-align: center;
        transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
        min-width: 120px;
    }

    .glass-table td:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);

    /* Donkerder grijs glas */
    background: linear-gradient(
        135deg,
        rgba(200, 200, 200, 0.45),
        rgba(160, 160, 160, 0.32)
    ); 
	


    border-color: rgba(255, 255, 255, 0.40); /* subtiele rand */
}

    a.bgcolor {
        text-decoration: none;
        color: var(--text-main);
        display: inline-flex;
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    a.bgcolor img {
        display: block;
        max-width: 90px;
        height: auto;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
    }

    a.bgcolor p,
    a.bgcolor P {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
    }

    a.bgcolor:hover {
        color: var(--accent);
    }

    a.bgcolor:hover img {
        transform: translateY(-1px) scale(1.02);
    }

    a {
        color: var(--accent);
    }

    a:hover {
        color: #ffffff;
        /* background-color: var(--accent); */
        border-radius: 999px;
        padding-inline: 0.35rem;
        text-decoration: none;
    }

    footer, small {
        color: var(--text-muted);
        font-size: 0.75rem;
    }



@media (min-width: 769px) {
    .glass-table td {
        padding: 0.5rem 0.5rem 0.4rem;
    }
}

    @media (max-width: 768px) {
        .page-wrapper {
            padding: 1.75rem 0.9rem 2.5rem;
        }

        .glass-table {
            border-spacing: 0.75rem 0.75rem;
            padding: 1.15rem 0.55rem;
        }

        .glass-table tr {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .glass-table td {
            flex: 1 1 calc(50% - 1.1rem);
            max-width: calc(50% - 1.1rem);
        }

        .glass-table td a img {
            max-width: 72px;
        }
    }

@media (max-width: 480px) {
  .lightbox-content {
        max-width: 80%;     /* tabel wordt ook 2 kolommen → past perfect */
        height: 90%;
    }

 .page-wrapper {
            padding: 1rem 0.9rem 1rem;
        }
    /* veel meer ruimte tussen de 2 kolommen */
    .glass-table td {
        flex: 1 1 calc(50% - 3.6rem);
        max-width: calc(50% - 4rem);
        margin-bottom: 0.9rem;   /* extra verticale lucht */
		margin-right: 1rem;
    }

    /* gap tussen cellen ook groter */
    .glass-table {
        border-spacing: 1.0rem 1.0rem;
    }
}

        .subtitle {
            font-size: 0.9rem;
        }

@media (max-width: 380px) {
 .page-wrapper {
            padding: 1rem 0.9rem 1rem;
        }
		
    /* iconen kleiner */
    .glass-table td a img {
        max-width: 55px !important;
    }

    /* tekst iets kleiner */
    .glass-table td a p,
    .glass-table td a P {
        font-size: 0.75rem !important;
    }

    /* kolombreedte iets compacter */
    .glass-table td {
        flex: 1 1 calc(50% - 0.8rem);
        max-width: calc(50% - 0.8rem);
        padding: 0.6rem 0.5rem;
    }

    /* glasplaat spacing iets kleiner */
    .glass-table {
        border-spacing: 0.45rem;
        padding: 1rem 0.5rem;
    }
}

	
	.glass-panel {
    display: inline-block;        /* belangrijk! */
    width: auto;                  /* breedte = inhoud */
    max-width: 100%;
    padding: 0.5rem 0.5rem;
    background: var(--glass-bg);
    border-radius: 1.5rem;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.header-block {
    background: #E9F1E2;
    padding: 0.5rem;
    border-radius: 1rem;
}

}

.header-logo {
    max-width: 220px;
    height: auto;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}

.header-block h1 {
    font-family: Verdana, sans-serif;
    font-size: 0.9rem;
    margin: 0.5rem 0 0.5rem;
    color: var(--accent);
}

.header-block .subtext {
    font-family: Verdana, sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-block {
    background: #E9F1E2;
    padding: 0.2rem;
    border-radius: 1rem;
    margin-top: 0.2rem;
    text-align: center;
}
/* Lightbox achtergrond */
.lightbox {
    display: none;                /* standaard verborgen */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75); /* donkere overlay */
    backdrop-filter: blur(4px);
    z-index: 9999;               /* boven alles */
}

/* Lightbox venster */
.lightbox-content {
    position: relative;
    width: auto;
    max-width: 80%;   /* exact dezelfde als jouw tabel/glasplaat */
    height: 95%;
    margin: 1% auto;
    background: rgba(255,255,255,0.25);
    border-radius: 15px;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 0px;
    box-shadow: 0 0 1px rgba(0,0,0,0);
}


/* Sluitknop */
.closeP2000 {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 32px;
    cursor: pointer;
    color: darkgreen;
}

/* Frame met de p2000.html */
.p2000-frame {
    width: 100%;
    height: calc(100% - 0px);
    border: none;
    border-radius: 10px;
    background: yellow;
}

/* overlay */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    z-index: 9999;
}


/* iframe */
.popup-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* sluitknop */
.closePopup {
    position: absolute;
    top: 10px; right: 20px;
    color: darkgreen;
    font-size: 32px;
    cursor: pointer;
}

/* de rij met links */
.popup-links a {
    text-decoration: none !important;
    color: var(--text-main);
  /*
    margin-right: 1.5rem;
    color: darkgreen;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
*/
}

.popup-links a:hover {
      color: var(--accent);
}

/* === Scrollbar styling (Webkit browsers) === */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/* achtergrond van de scrollbar */
::-webkit-scrollbar-track {
    background: var(--bg-color);                  /* #E9F1E2 */
    border-radius: 10px;
}

/* de 'thumb' – het schuifblokje */
::-webkit-scrollbar-thumb {
    background: var(--accent-soft);               /* subtiel groen */
    border-radius: 10px;
    border: 2px solid var(--bg-color);            /* zorgt voor lucht rondom */
}

/* hover over de thumb */
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);                    /* #0b4f2f */
}

/* optioneel: actieve toestand */
::-webkit-scrollbar-thumb:active {
    background: var(--accent); 
    opacity: 0.9;
}
.popup-frame {
    overflow-y: scroll;
}

/* alleen de scrollbar in de iframe */
.popup-frame::-webkit-scrollbar {
    width: 12px;
}

.popup-frame::-webkit-scrollbar-track {
    background: var(--bg-color); /* #E9F1E2 */
}

.popup-frame::-webkit-scrollbar-thumb {
    background: var(--accent); /* donker groen */
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

.popup-frame::-webkit-scrollbar-thumb:hover {
    background: var(--accent-soft); /* lichtere groene tint */
}

.lightbox-content {
    overflow-y: auto; /* belangrijk! */
}

/* Scrollbar styling alleen binnen de lightbox */
.lightbox-content::-webkit-scrollbar {
    width: 12px;
}

.lightbox-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.25); 
    border-radius: 10px;
}

.lightbox-content::-webkit-scrollbar-thumb {
    background: rgba(11, 79, 47, 0.35); /* donkerder green-tint */
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.25);
}

.lightbox-content::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 79, 47, 0.55);
}

/* Firefox variant */
.lightbox-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 79, 47, 0.45) rgba(255,255,255,0.25);
}

