:root {
    --hoofdkleur: #ff6b6b;
    --accentkleur: #0056b3;
    --donker: #1a2b48;
    --licht: #f8fafc;
    --wit: #ffffff;
    --tekst-grijs: #64748b;
    --schaduw: 0 10px 25px rgba(0, 0, 0, 0.05);
    --straal: 12px;
    --achtergrond-medisch: #fee2e2;
    --tekst-medisch: #991b1b;
    --achtergrond-praktisch: #fef9c3;
    --tekst-praktisch: #854d0e;
    --achtergrond-wachtdienst: #dcfce7;
    --tekst-wachtdienst: #166534;
    --achtergrond-advies: #dbeafe;
    --tekst-advies: #1e40af;
    --achtergrond-varia: #f5f3ff;
    --tekst-varia: #5b21b6;

    --achtergrond-knop-uit: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    color: var(--donker);
    background-color: var(--licht);
    line-height: 1.6;
}

h1,
h2,
h3 {
    color: var(--donker);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobiel-nav-bar {
    display: none;
}

.leeg-bericht {
    grid-column: 1 / -1;
    color: var(--donker);
    font-style: italic;
    padding: 20px 0;
}

.alleen-mobiel-sluit {
    display: none;
}

.knop-primair,
.knop-secundair {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--straal);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.knop-primair {
    background: var(--hoofdkleur);
    color: var(--wit);
}

.knop-primair:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.knop-secundair {
    background: var(--wit);
    color: var(--donker);
    border: 1px solid #e2e8f0;
}

.knop-secundair:hover {
    border-color: var(--hoofdkleur);
    color: var(--hoofdkleur);
}

#zoekknop {
    height: 45px;
    margin-bottom: 0;
    align-self: flex-end;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
}

.admin-controls {
    display: flex;
    gap: 10px;
}

.actie-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.actie-link.bewerk {
    color: #3498db;
}
.actie-link.verwijder {
    color: #e74c3c;
}

.actie-link:hover {
    transform: scale(1.2);
}

.admin-acties {
    display: flex;
    gap: 10px;
}

.dashboard-tijd-badge {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.datum-voluit {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hoofdkleur);
    text-transform: capitalize;
}

.klok-container {
    font-size: 0.95rem;
    color: var(--tekst-grijs);
    font-family: "Courier New", Courier, monospace;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.klok-container i {
    color: var(--accentkleur);
}

#live-datum {
    text-transform: lowercase !important;
}

.header-acties {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

#kalender-sectie {
    width: 100%;
    margin: 0 auto 25px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.kalender-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.kalender-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
}

.kalender-header h2 {
    font-size: 1.1rem;
    margin: 0;
    min-width: 150px;
    text-align: center;
    text-transform: capitalize;
    color: var(--hoofdkleur);
}

.knop-icoon {
    background: none;
    border: none;
    color: var(--tekst-grijs);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px 10px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.knop-icoon:hover {
    color: var(--accentkleur);
    transform: scale(1.1);
}

.kalender-grid,
.kalender-grid-dagen {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.weekdag {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 5px 0;
}

.kalender-dag {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.kalender-dag.heeft-evenement {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accentkleur);
    font-weight: 700;
    border-color: rgba(59, 130, 246, 0.2);
    cursor: pointer;
    position: relative;
}

.kalender-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.4;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: normal;
    min-width: 180px;
    max-width: 250px;
    text-align: left;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.kalender-dag.heeft-evenement:hover .kalender-tooltip {
    visibility: visible;
    opacity: 1;
}

.kalender-dag.vandaag {
    background-color: var(--hoofdkleur) !important;
    color: #fff !important;
}

.kalender-dag:hover:not(.andere-maand) {
    background-color: #f1f5f9;
}

.evenement-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.evenement-modal-inhoud {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.evenement-modal-sluit {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
}

.standaardformulier input[type="text"],
.standaardformulier input[type="date"],
.standaardformulier input[type="time"],
.standaardformulier input[type="number"],
.standaardformulier input[type="url"],
.standaardformulier textarea,
.standaardformulier select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.standaardformulier input:focus,
.standaardformulier textarea:focus {
    border-color: var(--hoofdkleur);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--hoofdkleur-rgb), 0.1);
}

.standaardformulier textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-optie-kaart {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    top: 0;
}

.admin-optie-kaart:hover {
    background: #ffffff !important;
    border-color: var(--hoofdkleur);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 6px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.admin-optie-kaart i {
    transition: transform 0.3s ease;
}

.admin-optie-kaart:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--hoofdkleur-donker);
}

.admin-optie-kaart span {
    transition: color 0.3s ease;
}

.admin-optie-kaart:hover span {
    color: var(--hoofdkleur);
}

.admin-modal-breed {
    width: 95% !important;
    max-width: 1200px !important;
    margin: 2% auto;
}

#admin-lijst-modal.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.deelnemers-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.deelnemers-tabel th {
    background-color: #f4f7f9;
    padding: 12px;
    border-bottom: 2px solid #3498db;
}

.deelnemers-tabel td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.ledenbeheer-hoofding th {
    text-align: left;
}

.datum-tijd-container {
    display: flex;
    gap: 10px;
}

.datum-tijd-container input[type="date"],
.datum-tijd-container input[type="time"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #334155;
    background-color: #f8fafc;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.datum-tijd-container input {
    position: relative;
    display: flex;
    align-items: center;
}

.datum-tijd-container input::after {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    color: var(--hoofdkleur);
    pointer-events: none;
}

.datum-tijd-container input[type="time"]::after {
    content: "\f017";
}

.straat-zoekform {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-groep {
    margin-bottom: 20px;
}

.form-groep label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--hoofdkleur);
}

.schaduw-kaart {
    background: var(--wit);
    padding: 25px;
    border-radius: var(--straal);
    box-shadow: var(--schaduw);
}

.tekst-centrum {
    text-align: center;
}

.login-sectie {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--licht);
    padding: 20px;
}

.login-kaart {
    background: var(--wit);
    padding: 40px;
    border-radius: var(--straal);
    box-shadow: var(--schaduw);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    height: 50px;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--tekst-grijs);
}

.fout-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #fecaca;
    text-align: center;
}

.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}

.w-full {
    width: 100%;
}

.link-subtiel {
    color: var(--hoofdkleur);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.link-subtiel:hover {
    color: var(--accentkleur);
    text-decoration: underline;
}

.dashboard-body {
    background-color: #f0f2f5;
    overflow-x: hidden;
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--donker);
    color: var(--wit);
    padding: 20px 0;
    position: fixed;
    height: 100%;
}

.sidebar-header {
    padding: 0 20px 30px;
    text-align: center;
}

.sidebar-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.actief {
    background: rgba(255, 255, 255, 0.05);
    color: var(--wit);
    border-left: 4px solid var(--hoofdkleur);
}

.sidebar-menu i {
    width: 20px;
    font-size: 1.1rem;
}

.nav-badge {
    background-color: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-badge {
    animation: pulse-red 2s infinite;
}

.logout-link:hover {
    color: #feb2b2 !important;
}

.inhoud {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
}

.inhoud-hoofding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.status-melding.succes {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    align-items: center;
    gap: 10px;
}

.span-twee {
    grid-column: span 2;
}

.nieuws-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nieuws-item:last-child {
    border-bottom: none;
}

.nieuws-meta {
    font-size: 0.8rem;
    color: var(--tekst-grijs);
    margin-bottom: 5px;
}

.nieuws-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--donker);
}

.nieuws-item p {
    font-size: 0.95rem;
    color: var(--tekst-grijs);
    line-height: 1.5;
}

.leden-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.leden-tabel th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--licht);
    color: var(--tekst-grijs);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leden-tabel td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.leden-tabel tr:hover {
    background-color: #f8fafc;
}

.tabel-link {
    color: var(--accentkleur);
    text-decoration: none;
}

.tabel-link:hover {
    text-decoration: underline;
}

.documenten-raster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    align-items: start;
}

.cat-titel {
    border-bottom: 2px solid var(--licht);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--donker);
    text-transform: capitalize;
}

.doc-lijst {
    list-style: none;
}

.doc-lijst li a {
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: var(--donker);
    border-radius: 8px;
    transition: background 0.2s;
    margin-bottom: 5px;
}

.doc-lijst li a:hover {
    background-color: #f1f5f9;
}

.doc-icoon {
    font-size: 1.5rem;
    color: #e11d48;
    margin-right: 15px;
}

.doc-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doc-naam {
    font-weight: 600;
    font-size: 0.95rem;
}

.doc-datum {
    font-size: 0.75rem;
    color: var(--tekst-grijs);
}

.download-pijl {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.doc-lijst li a:hover .download-pijl {
    color: var(--hoofdkleur);
}

.evenement-kaart {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.evenement-kaart.is-nieuw {
    border-left: 5px solid #e74c3c;
    position: relative;
    background-color: #fffcfc;
}

.nieuw-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.evenement-datum {
    background: var(--hoofdkleur);
    color: white;
    padding: 15px;
    border-radius: var(--straal);
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.evenement-datum .dag {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.evenement-datum .maand {
    text-transform: uppercase;
    font-size: 0.9rem;
}

.evenement-details {
    flex-grow: 1;
}

.evenement-details h3 {
    margin-top: 0.5rem;
}

.evenement-meta {
    color: var(--tekst-grijs);
    font-size: 0.9rem;
    margin: 5px 0 15px;
}

.maaltijd-indicator {
    color: #059669;
    font-weight: 500;
}

.event-beschrijving {
    margin-bottom: 20px;
    color: var(--donker);
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge.succes {
    background: #dcfce7;
    color: #166534;
}

.badge.fout {
    background: #fee2e2;
    color: #991b1b;
}

.evenement-voet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.plaatsen-vrij {
    font-size: 0.85rem;
    color: var(--tekst-grijs);
}

.forum-controls {
    margin-bottom: 20px;
    padding: 15px;
}

.zoek-groep {
    position: relative;
    flex-grow: 1;
    margin-bottom: 20px;
}

.zoek-groep i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tekst-grijs);
}

.zoek-groep input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.filter-sectie {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--donker);
    white-space: nowrap;
}

.knoppen-rij {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-badge,
.filter-knop {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    display: inline-block;
}

.cat-badge {
    padding: 6px 14px;
    min-width: 110px;
    text-align: center;
}

.filter-knop {
    cursor: pointer;
    padding: 8px 18px;
    background-color: var(--achtergrond-knop-uit);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.filter-knop input {
    display: none;
}

.forum-bijlage-container {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.bijlage-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    display: block;
    margin: 10px 0;
}

.bijlage-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-decoration: none;
    color: var(--hoofdkleur);
    font-size: 0.9rem;
}

.bijlage-link:hover {
    background-color: #e9ecef;
}

#geen-berichten {
    padding: 20px;
    color: var(--tekst-grijs);
}

.medisch,
.filter-knop.actief.medisch {
    background-color: var(--achtergrond-medisch) !important;
    color: var(--tekst-medisch) !important;
}
.praktisch,
.filter-knop.actief.praktisch {
    background-color: var(--achtergrond-praktisch) !important;
    color: var(--tekst-praktisch) !important;
}
.wachtdienst,
.filter-knop.actief.wachtdienst {
    background-color: var(--achtergrond-wachtdienst) !important;
    color: var(--tekst-wachtdienst) !important;
}
.lok,
.filter-knop.actief.lok {
    background-color: var(--achtergrond-advies) !important;
    color: var(--tekst-advies) !important;
}
.varia,
.filter-knop.actief.varia {
    background-color: var(--achtergrond-varia) !important;
    color: var(--tekst-varia) !important;
}

.filter-knop:not(.actief) {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0;
    opacity: 0.6;
}

.filter-knop.medisch:not(.actief) {
    color: var(--tekst-medisch) !important;
}
.filter-knop.praktisch:not(.actief) {
    color: var(--tekst-praktisch) !important;
}
.filter-knop.wachtdienst:not(.actief) {
    color: var(--tekst-wachtdienst) !important;
}
.filter-knop.lok:not(.actief) {
    color: var(--tekst-lok) !important;
}
.filter-knop.varia:not(.actief) {
    color: var(--tekst-varia) !important;
}

.filter-knop.actief {
    border-color: transparent;
}
.filter-knop:not(.actief):hover {
    filter: brightness(0.95);
    border-color: #cbd5e1;
}

.wis-filters {
    align-self: center;
    color: #ef4444;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.forum-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
    transition: background 0.2s;
}

.forum-item:hover {
    background-color: #f8fafc;
}

.forum-item.admin-layout {
    padding-right: 60px;
}

.forum-avatar-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.forum-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.forum-avatar-initialen {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.forum-icon {
    min-width: 120px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

.forum-info {
    flex-grow: 1;
}

.topic-titel {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--donker);
    text-decoration: none;
    margin-bottom: 4px;
}

.topic-titel:hover {
    color: var(--accentkleur);
}

.topic-meta,
.topic-inhoud {
    color: var(--donker);
}
.topic-meta {
    font-size: 0.85rem;
    color: var(--tekst-grijs);
}

.forum-stats {
    text-align: center;
    min-width: 80px;
}

.reactie-teller {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hoofdkleur);
}

.reactie-label {
    font-size: 0.75rem;
    color: var(--tekst-grijs);
    text-transform: uppercase;
}

.filter-rij-primair {
    display: flex;
    gap: 15px;
    align-items: center;
}

.tijd-groep {
    min-width: 200px;
}

.input-veld-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.zoek-groep input,
.input-veld-select {
    height: 45px;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: white;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

.zoek-groep {
    position: relative;
    flex-grow: 1;
}

.zoek-groep i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tekst-grijs);
}

.zoek-groep input {
    padding-left: 45px;
}

.tijd-groep {
    flex-basis: 220px;
    flex-shrink: 0;
}

.filter-rij-primair {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.instellingen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.form-groep {
    margin-bottom: 15px;
}
.form-groep label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--tekst-donker);
}

.uitleg {
    color: var(--tekst-grijs);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--straal);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-succes {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-fout {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.input-veld.disabled {
    background-color: #f8fafc;
    cursor: not-allowed;
    color: #64748b;
}

.nieuws-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.nieuws-card {
    padding: 30px;
    margin-bottom: 25px;
}

.nieuws-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.nieuwsbrief-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pdf-link {
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.verwijder-small {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
    transition: 0.2s;
}

.verwijder-small:hover {
    opacity: 1;
    color: #c0392b;
}

.admin-controls {
    display: flex;
    gap: 10px;
}

.actie-link {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s ease;
}

.actie-link.bewerk:hover {
    color: #2980b9;
    background: #e1f0fa;
    border-color: #2980b9;
}

.actie-link.verwijder:hover {
    color: #c0392b;
    background: #fdeaea;
    border-color: #c0392b;
}

.nieuws-datum {
    font-size: 0.85rem;
    color: var(--tekst-grijs);
    font-weight: 500;
}

.nieuws-card h2 {
    margin-bottom: 15px;
    color: var(--primair-blauw);
}

.nieuws-inhoud {
    line-height: 1.6;
    color: var(--tekst-donker);
}

.download-lijst {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.download-lijst li a {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.download-lijst li a:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.pdf-icon {
    font-size: 1.5rem;
    color: #e53e3e;
    margin-right: 15px;
}

.pdf-info strong {
    display: block;
    font-size: 0.95rem;
}

.pdf-info small {
    color: var(--tekst-grijs);
}

.sectie-titel {
    margin: 40px 0 20px 0;
    color: var(--primair-blauw);
    display: flex;
    align-items: center;
    gap: 10px;
}

.leden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.lid-kaart {
    position: relative !important;
    display: flex;
    padding: 20px;
    margin-bottom: 20px;
    overflow: visible !important;
}

.verwijder-icoon {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    color: #ff4d4d !important;
    font-size: 1.2rem !important;
    z-index: 999 !important;
    cursor: pointer;
    display: block !important;
    text-decoration: none;
}

.verwijder-icoon:hover {
    color: #b30000 !important;
    transform: scale(1.2);
}

.verwijder-icoon-forum {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    padding: 10px;
    transition: color 0.2s;
    z-index: 5;
}

.verwijder-icoon-forum:hover {
    color: #ef4444;
}

.lid-avatar {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--primair-blauw);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.lid-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}
.lid-datum {
    font-size: 0.85rem;
    color: var(--tekst-grijs);
    display: block;
    margin-bottom: 10px;
}
.lid-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.sectie-divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 50px 0;
}

.lid-kaart.pensioen {
    border-top: 4px solid #fbd38d;
}

.zoek-container {
    padding: 25px;
    margin-bottom: 30px;
}

.straat-zoekform {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.input-groep {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 2;
}

.input-groep.nummer-input {
    flex: 0.5;
    min-width: 100px;
}

.input-groep label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--tekst-donker);
}

.input-groep input {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
}

.resultaat-container {
    animation: fadeIn 0.4s ease-out;
}

.praktijken-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.praktijk-kaart {
    position: relative;
    padding: 40px;
    border-top: 5px solid var(--primair-blauw);
}

.praktijk-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primair-blauw);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.praktijk-kaart h2 {
    margin: 0 0 15px 0;
    color: var(--tekst-donker);
    font-size: 1.8rem;
}

.praktijk-kaart p {
    margin: 8px 0;
    color: var(--tekst-grijs);
    font-size: 1.1rem;
}

.praktijk-kaart i {
    width: 25px;
    color: var(--primair-blauw);
}

.praktijk-kaart hr {
    margin: 25px 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

.dokter-lijst {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.dokter-lijst li {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--tekst-donker);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dokter-lijst li i {
    color: #64748b;
}

.regio-label {
    background: #f1f5f9;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px !important;
    color: var(--primair-blauw) !important;
}

.regio-label i {
    margin-right: 8px;
}

.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #cbd5e0;
    border-top: none;
    z-index: 1000;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-box div {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-box div:hover {
    background: #edf2f7;
    color: var(--primair-blauw);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 15px;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #2d3748;
}

.modal-content p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-content .knop-primair {
    width: 100%;
    padding: 12px;
}

.bestuur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.bestuurs-kaart {
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--hoofdkleur);
}

.functie-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--hoofdkleur);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-sectie {
    margin-top: 40px;
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--straal);
    font-family: inherit;
    font-size: 1rem;
    background-color: #fff;
    box-sizing: border-box;
    height: 48px;
}

.contact-form textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--straal);
    font-family: inherit;
    resize: vertical;
    height: auto;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.ideeen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.engagement-kaart {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zoek-container-pagina {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 15px;
    width: 280px;
    height: 42px;
    box-sizing: border-box;
    transition:
        width 0.3s ease-in-out,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    margin-left: auto;
}

.zoek-container-pagina .zoek-icoon {
    color: #94a3b8;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.zoek-container-pagina .zoekveld {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
    font-size: 14px;
    padding: 0 !important;
    margin: 0 !important;
    color: #1e293b;
}

.zoek-container-pagina .zoekveld::placeholder {
    color: #94a3b8;
}

.zoek-container-pagina:focus-within {
    width: 400px;
    border-color: var(--accentkleur) !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.zoek-container-pagina:focus-within .zoek-icoon {
    color: var(--accentkleur);
}

.icoon-cirkel {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    color: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icoon-cirkel.variant {
    background: #f0f9ff;
    color: #0ea5e9;
}

.placeholder-form {
    width: 100%;
    margin-top: 20px;
    opacity: 0.7;
}

.disabled-knop {
    cursor: not-allowed !important;
    filter: grayscale(1);
    width: 100%;
}

.info-banner {
    margin-top: 30px;
    padding: 15px;
    background: #f8fafc;
    border-left: 4px solid var(--hoofdkleur);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #64748b;
}

.beheer-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.beheer-tabel th,
.beheer-tabel td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.standaard-info-beheer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    font-size: 0.7rem;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.2s;
}

.standaard-info-beheer:hover {
    background: var(--hoofdkleur);
    color: white;
}

.mini-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    width: 300px;
    border: 1px solid #e2e8f0;
}

.actie-knop-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: white;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 5px;
    font-size: 0.9rem;
}

.actie-knop-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.actie-knop-mini:hover .fa-pen,
.actie-knop-mini:hover .fa-paper-plane {
    color: var(--hoofdkleur);
    border-color: var(--hoofdkleur);
}

.actie-knop-mini:hover .fa-trash {
    color: #ef4444;
    border-color: #fee2e2;
    background-color: #fef2f2;
}

.kolom-acties {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.initialen-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    border: 3px solid #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.foto-upload-label {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.foto-upload-label:hover {
    background: #e2e8f0;
}

.foto-upload-label input[type="file"] {
    display: none;
}

.knop-link {
    text-decoration: none;
    padding: 5px;
    transition: opacity 0.2s;
}

.knop-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

@media print {
    body * {
        visibility: hidden;
    }
    #admin-lijst-modal,
    #admin-lijst-modal *,
    #admin-modal-body,
    #admin-modal-body * {
        visibility: visible;
    }

    #admin-lijst-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
    }

    .modal-content,
    .admin-modal-breed {
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .modal-knoppen {
        display: none !important;
    }

    .deelnemers-tabel {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .deelnemers-tabel th {
        border-bottom: 2px solid #000 !important;
        color: #000 !important;
        background: #eee !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .deelnemers-tabel td {
        border-bottom: 1px solid #ccc !important;
        padding: 8px !important;
    }

    #admin-modal-body::after {
        content: "Gegenereerd op: " attr(data-print-date);
        display: block;
        margin-top: 20px;
        font-size: 0.8rem;
        color: #555;
    }
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .mobiel-nav-bar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #ffffff;
        padding: 0 20px;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .hamburger-knop {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--hoofdkleur);
        cursor: pointer;
    }

    .dashboard-wrapper {
        display: block !important;
    }

    .inhoud {
        margin-top: 60px !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .inhoud-hoofding {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sidebar {
        display: block !important;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #2c3e50;
        z-index: 9999 !important;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        margin: 0;
    }

    .sidebar.mobiel-actief {
        left: 0 !important;
        transform: none !important;
    }

    .alleen-mobiel-sluit {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-inhoud-wrapper {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .sidebar-logo {
        max-width: 120px !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }

    .mobiel-logo {
        height: 35px !important;
        width: auto;
    }

    .dashboard-wrapper {
        display: block;
    }

    .zoek-uitleg {
        display: block;
        margin-bottom: 10px;
    }

    .is-gezocht .zoek-uitleg {
        display: none;
    }

    .nieuwe-zoekopdracht {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        box-sizing: border-box;
    }

    .is-gezocht .nieuwe-zoekopdracht {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        box-sizing: border-box;
    }

    .straat-zoekform {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .straatinvoer {
        width: 100% !important;
    }

    #zoekknop {
        width: 100%;
        margin-top: 10px;
    }

    .praktijk-kaart {
        padding: 15px !important;
    }

    .dokter-lijst li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .header-acties {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .admin-acties {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    #toggleKalender {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .zoek-container-pagina {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .zoekveld {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box !important;
        margin: 0 !important;
        font-size: 16px !important;
    }

    .zoek-icoon {
        left: 15px !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .evenement-kaart {
        flex-direction: column;
    }

    .evenement-datum {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 10px;
        padding: 10px !important;
        border-right: none !important;
        border-bottom: 2px solid #f1f5f9;
    }

    .evenement-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .checkbox-groep {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .checkbox-groep input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .modal-acties {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 20px;
    }

    .documenten-raster {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .documenten-raster .schaduw-kaart {
        width: 100% !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }

    .doc-lijst li a {
        padding: 12px 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .download-pijl {
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .nieuws-container {
        grid-template-columns: 1fr;
    }

    .span-twee {
        grid-column: span 1;
    }

    .inhoud {
        margin-left: 0;
        padding: 20px;
    }

    .straat-zoekform {
        flex-direction: column;
        align-items: stretch;
    }

    .input-groep {
        flex: 1;
    }

    .schaduw-kaart:has(.leden-tabel) {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .leden-tabel,
    .leden-tabel thead,
    .leden-tabel tbody,
    .leden-tabel th,
    .leden-tabel td,
    .leden-tabel tr {
        display: block;
    }

    .leden-tabel thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .leden-tabel tr {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #edf2f7;
        overflow: hidden;
    }

    .leden-tabel td {
        border: none;
        position: relative;
        padding: 12px 15px 12px 40% !important;
        text-align: left !important;
        border-bottom: 1px solid #f7fafc;
        min-height: 45px;
        display: flex;
        align-items: center;
    }

    .leden-tabel td:first-child {
        background-color: var(--accentkleur);
        color: white;
        padding-left: 15px !important;
        font-size: 1.1rem;
    }

    .leden-tabel td:first-child strong {
        color: white;
    }
    .leden-tabel td:first-child::before {
        display: none;
    }

    .leden-tabel td:last-child {
        border-bottom: none;
    }

    .leden-tabel td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 35%;
        white-space: nowrap;
        font-weight: 700;
        color: #718096;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
    }

    .tabel-link {
        color: var(--hoofdkleur);
        text-decoration: none;
        word-break: break-all;
    }

    .geen-resultaten {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .geen-resultaten-cel {
        width: 100% !important;
        display: block !important;
        padding: 40px 20px !important;
        text-align: center !important;
        background: none !important;
        color: #64748b;
    }

    .geen-resultaten-cel i {
        font-size: 3rem;
        margin-bottom: 15px;
        display: block;
        opacity: 0.5;
    }

    .leden-grid {
        grid-template-columns: 1fr;
    }

    .lid-kaart {
        padding: 15px;
        gap: 15px;
    }

    .lid-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .sectie-titel {
        font-size: 1.2rem;
    }

    .forum-hoofding {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        display: flex !important;
    }

    .forum-hoofding h1 {
        margin-bottom: 0;
        font-size: 1.5rem;
    }

    .forum-hoofding .knop-primair {
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 0;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        color: transparent;
        white-space: nowrap;
    }

    .forum-hoofding .knop-primair i {
        color: var(--wit);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.2rem;
    }

    .filter-rij-primair {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .zoek-groep,
    .tijd-groep {
        width: 100% !important;
        flex-basis: auto !important;
    }

    .filter-sectie {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .forum-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px 15px !important;
        gap: 8px;
    }

    .forum-icon {
        min-width: unset !important;
        margin-right: 0 !important;
        margin-bottom: 5px;
        width: auto;
        display: block !important;
    }

    .forum-icon .cat-badge {
        min-width: 100px;
        display: inline-block;
    }

    .forum-info {
        width: 100%;
    }

    .topic-titel {
        font-size: 1.15rem !important;
        margin-bottom: 4px;
        display: block;
    }

    .topic-meta {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .forum-stats {
        width: 100%;
        text-align: left !important;
        min-width: unset !important;
        display: flex !important;
        align-items: center;
        gap: 6px;
        padding-top: 10px;
        border-top: 1px solid #f1f5f9;
    }

    .reactie-teller {
        display: inline !important;
        font-size: 1rem !important;
    }

    .reactie-label {
        display: inline !important;
        font-size: 0.85rem !important;
        text-transform: lowercase !important;
    }

    .instellingen-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .instellingen-grid .schaduw-kaart {
        padding: 20px 15px;
    }

    .instellingen-grid h3 {
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .uitleg {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .instellingen-grid .knop-primair {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
    }

    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .input-veld {
        font-size: 16px !important;
        padding: 12px;
    }

    .beheer-tabel,
    .beheer-tabel thead,
    .beheer-tabel tbody,
    .beheer-tabel th,
    .beheer-tabel td,
    .beheer-tabel tr {
        display: block;
    }

    .beheer-tabel thead {
        display: none;
    }

    .beheer-tabel tr {
        margin-bottom: 15px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .beheer-tabel td {
        border: none;
        padding: 8px 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .beheer-tabel td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
        font-size: 0.85rem;
    }

    .beheer-tabel td:last-child {
        border-top: 1px solid #f1f5f9;
        margin-top: 5px;
        padding-top: 10px;
        justify-content: flex-end;
        gap: 15px;
    }

    .deelnemers-tabel thead {
        display: none;
    }

    .deelnemers-tabel,
    .deelnemers-tabel tbody,
    .deelnemers-tabel tr,
    .deelnemers-tabel td {
        display: block;
        width: 100%;
    }

    .deelnemers-tabel tr {
        margin-bottom: 15px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 10px;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .deelnemers-tabel td {
        text-align: right;
        padding: 8px 10px;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }

    .deelnemers-tabel td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        font-size: 0.75rem;
    }

    .deelnemers-tabel td:first-child {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 5px;
        padding-bottom: 10px;
    }

    .deelnemers-tabel td:last-child {
        justify-content: flex-end;
        border-top: 1px solid #f1f5f9;
        margin-top: 5px;
        padding-top: 10px;
    }

    .deelnemers-tabel td.kolom-acties {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .knop-container-mobiel {
        display: flex;
        gap: 8px;
    }

    .verwijder-icoon-forum {
        top: 10px;
        transform: none;
    }
}
