/* Nursepoint Vacaturebank - Frontend Styling */

/* Huisstijl kleuren */
:root {
    --npvb-primary: #3a7f74;          /* Hoofdkleur (donker turquoise) */
    --npvb-primary-dark: #2d635a;     /* Donkerder voor hover */
    --npvb-primary-darker: #1f4540;   /* Nog donkerder voor titels */
    --npvb-accent: #9fd3c7;           /* Accent (licht turquoise) */
    --npvb-accent-light: #d4ebe5;     /* Achtergrond highlights */
    --npvb-accent-very-light: #eef7f4;/* Zeer licht voor hover/bg */
}

.npvb-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.npvb-page-title {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1f4540;
    border-bottom: 2px solid #e0e6ed;
    padding-bottom: 12px;
}

/* Notices */
.npvb-notice {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid;
}
.npvb-notice ul { margin: 0; padding-left: 20px; }
.npvb-notice p { margin: 0 0 8px 0; }
.npvb-notice p:last-child { margin-bottom: 0; }
.npvb-notice-success { background: #e8f5e9; border-color: #4caf50; color: #1b5e20; }
.npvb-notice-error { background: #ffebee; border-color: #f44336; color: #b71c1c; }
.npvb-notice-info { background: #d4ebe5; border-color: #3a7f74; color: #1f4540; }
.npvb-notice-warning { background: #fff3e0; border-color: #ff9800; color: #e65100; }

/* Forms */
.npvb-form { background: #fff; padding: 24px; border: 1px solid #e0e6ed; border-radius: 8px; }
.npvb-form-group { margin-bottom: 18px; }
.npvb-form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #2c3e50; }
.npvb-form-group input[type="text"],
.npvb-form-group input[type="email"],
.npvb-form-group input[type="password"],
.npvb-form-group input[type="file"],
.npvb-form-group select,
.npvb-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cdd5df;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
}
.npvb-form-group input:focus,
.npvb-form-group select:focus,
.npvb-form-group textarea:focus {
    outline: none;
    border-color: #3a7f74;
    box-shadow: 0 0 0 3px rgba(58, 127, 116, 0.18);
}
.npvb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.npvb-form-row.three-cols { grid-template-columns: 1fr 1fr 1fr; }
.npvb-form-checkbox label { font-weight: normal; cursor: pointer; }
.npvb-form-checkbox input { margin-right: 8px; }
.npvb-form-actions { display: flex; gap: 12px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.npvb-form-footer { text-align: center; margin-top: 16px; color: #607d8b; }
.npvb-help-text { display: block; font-size: 13px; color: #607d8b; margin-top: 4px; }
.required { color: #f44336; }

/* Buttons */
.npvb-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
    min-height: 40px;
    line-height: 1.3;
}
.npvb-btn-primary { background: #3a7f74; color: #fff; }
.npvb-btn-primary:hover { background: #2d635a; color: #fff; }
.npvb-btn-secondary { background: #fff; color: #3a7f74; border: 1px solid #3a7f74; }
.npvb-btn-secondary:hover { background: #d4ebe5; }
.npvb-btn-large { padding: 14px 28px; font-size: 16px; }
.npvb-btn-small { padding: 6px 12px; font-size: 13px; }

/* Filter form */
.npvb-filter-form {
    background: #f7faf9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.npvb-filter-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.npvb-filter-field { position: relative; }
.npvb-filter-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: #455a64; }
.npvb-filter-field input,
.npvb-filter-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cdd5df;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.npvb-filter-submit { display: flex; gap: 8px; }

/* Autocomplete dropdown */
.npvb-autocomplete-wrap { position: relative; }
.npvb-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #cdd5df;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 280px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
.npvb-autocomplete-dropdown.active { display: block; }
.npvb-autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f4f8;
    font-size: 14px;
}
.npvb-autocomplete-item:last-child { border-bottom: none; }
.npvb-autocomplete-item:hover,
.npvb-autocomplete-item.highlighted {
    background: #d4ebe5;
}
.npvb-autocomplete-name { font-weight: 600; color: #1f4540; }
.npvb-autocomplete-province { color: #607d8b; font-size: 12px; margin-left: 6px; }
.npvb-autocomplete-loading {
    padding: 10px 12px;
    color: #90a4ae;
    font-size: 13px;
    font-style: italic;
}
.npvb-autocomplete-empty {
    padding: 10px 12px;
    color: #90a4ae;
    font-size: 13px;
}

/* Distance badge */
.npvb-distance-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

/* Vacature cards */
.npvb-results-count { color: #607d8b; margin-bottom: 16px; }
.npvb-vacature-list { display: flex; flex-direction: column; gap: 16px; }
.npvb-vacature-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.npvb-vacature-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.npvb-vacature-title { margin: 0 0 10px 0; font-size: 20px; }
.npvb-vacature-title a { color: #1f4540; text-decoration: none; }
.npvb-vacature-title a:hover { color: #3a7f74; }
.npvb-vacature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #546e7a;
}
.npvb-meta-item { display: inline-block; }
.npvb-badge {
    background: #d4ebe5;
    color: #2d635a;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.npvb-vacature-excerpt { color: #455a64; margin-bottom: 14px; line-height: 1.6; }

/* No results */
.npvb-no-results {
    text-align: center;
    padding: 40px;
    background: #f7faf9;
    border-radius: 8px;
    color: #607d8b;
}

/* Pagination */
.npvb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px;
}
.npvb-page-link {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #cdd5df;
    border-radius: 4px;
    text-decoration: none;
    color: #3a7f74;
}
.npvb-page-link:hover { background: #d4ebe5; }
.npvb-page-info { color: #607d8b; }

/* Single vacature page */
.npvb-vacature-detail { margin-top: 30px; }
.npvb-vacature-info-box {
    background: #f7faf9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.npvb-vacature-info-box h3 { margin-top: 0; color: #1f4540; }
.npvb-info-list { list-style: none; padding: 0; margin: 0; }
.npvb-info-list li { padding: 6px 0; border-bottom: 1px solid #e0e6ed; }
.npvb-info-list li:last-child { border-bottom: none; }

.npvb-apply-section { margin-top: 30px; }
.npvb-apply-section h3 { color: #1f4540; }
.npvb-apply-form { background: #fff; }

/* Account dashboard */
.npvb-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.npvb-dashboard-section {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}
.npvb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.npvb-section-header h3 { margin: 0; color: #1f4540; }

.npvb-table {
    width: 100%;
    border-collapse: collapse;
}
.npvb-table th,
.npvb-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #e0e6ed;
}
.npvb-table th { background: #f7faf9; color: #455a64; font-weight: 600; }

.npvb-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.npvb-status-publish { background: #e8f5e9; color: #2e7d32; }
.npvb-status-draft { background: #fff3e0; color: #ef6c00; }
.npvb-status-closed { background: #eceff1; color: #455a64; }
.npvb-status-trash { background: #ffebee; color: #c62828; }
.npvb-status-nieuw { background: #d4ebe5; color: #2d635a; }

/* Beheer acties */
.npvb-actions-cell {
    white-space: nowrap;
}
.npvb-manage-form {
    display: inline;
    margin: 0;
}
.npvb-action-link {
    display: inline-block;
    background: none;
    border: none;
    padding: 4px 8px;
    margin: 0 2px;
    color: #3a7f74;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    border-radius: 3px;
    transition: background 0.15s;
}
.npvb-action-link:hover {
    background: #d4ebe5;
    text-decoration: underline;
}
.npvb-action-warning { color: #ef6c00; }
.npvb-action-warning:hover { background: #fff3e0; }
.npvb-action-success { color: #2e7d32; }
.npvb-action-success:hover { background: #e8f5e9; }
.npvb-action-danger { color: #c62828; }
.npvb-action-danger:hover { background: #ffebee; }

/* Delete reactie knoppen */
.npvb-app-group-actions {
    padding: 10px 16px;
    background: #fafbfc;
    border-bottom: 1px solid #e0e6ed;
    text-align: right;
}
.npvb-btn-text-danger {
    background: none;
    border: none;
    color: #c62828;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 3px;
    font-family: inherit;
    transition: background 0.15s;
}
.npvb-btn-text-danger:hover {
    background: #ffebee;
    text-decoration: underline;
}

.npvb-application-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.npvb-btn-danger {
    background: #fff;
    color: #c62828;
    border: 1px solid #c62828;
}
.npvb-btn-danger:hover {
    background: #ffebee;
    color: #c62828;
}

/* Vacature pagina layout met sidebar */
.npvb-vacature-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
    margin: 20px 0;
}

.npvb-vacature-main {
    min-width: 0; /* voorkomt grid overflow */
}

.npvb-vacature-body {
    margin: 16px 0 24px;
}

/* Sidebar */
.npvb-vacature-sidebar {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 0;
    position: sticky;
    top: 20px;
    overflow: hidden;
}

/* Toggle knop voor mobiel - standaard verborgen op desktop */
.npvb-sidebar-toggle {
    display: none;
    width: 100%;
    background: #3a7f74;
    color: #fff;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    text-align: left;
}
.npvb-sidebar-toggle-label { flex: 1; }
.npvb-sidebar-toggle-arrow {
    transition: transform 0.2s;
    font-size: 12px;
}
.npvb-sidebar-toggle[aria-expanded="true"] .npvb-sidebar-toggle-arrow {
    transform: rotate(180deg);
}

/* Sidebar content */
.npvb-sidebar-content {
    padding: 16px;
}

.npvb-sidebar-block {
    margin-bottom: 22px;
}
.npvb-sidebar-block:last-child { margin-bottom: 0; }

.npvb-sidebar-block .npvb-sidebar-title {
    font-size: 15px;
    color: #1f4540;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e6ed;
}

.npvb-sidebar-form .npvb-sidebar-field {
    margin-bottom: 10px;
}
.npvb-sidebar-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #455a64;
    margin-bottom: 4px;
}
.npvb-sidebar-form input,
.npvb-sidebar-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cdd5df;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}
.npvb-sidebar-submit {
    width: 100%;
    margin-top: 4px;
}

/* Mobile: sidebar wordt collapsable bovenaan */
@media (max-width: 900px) {
    .npvb-vacature-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .npvb-vacature-sidebar {
        position: static;
    }
    .npvb-sidebar-toggle {
        display: flex;
    }
    .npvb-sidebar-content {
        display: none;
        padding: 16px;
    }
    .npvb-sidebar-content.npvb-sidebar-open {
        display: block;
    }
    /* Functiegebieden op mobiel iets compacter */
    .npvb-vacature-sidebar .npvb-functie-list {
        max-height: 320px;
    }
}

/* WP Editor (TinyMCE) op frontend - styling */
.npvb-form .wp-editor-wrap {
    border: 1px solid #cdd5df;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.npvb-form .wp-editor-wrap .wp-editor-container {
    border: none;
}
.npvb-form .wp-editor-tabs {
    background: #f7faf9;
    border-bottom: 1px solid #cdd5df;
}
.npvb-form .mce-toolbar-grp,
.npvb-form .mce-toolbar {
    background: #f7faf9 !important;
    border-bottom: 1px solid #e0e6ed !important;
}
.npvb-form .mce-btn button {
    color: #455a64 !important;
}
.npvb-form .mce-edit-area {
    background: #fff;
}
.npvb-form .wp-editor-area {
    border: none;
    padding: 12px;
    font-family: inherit;
}

.npvb-empty {
    text-align: center;
    padding: 24px;
    color: #607d8b;
    font-style: italic;
}

/* Application cards (werkgever dashboard) - oude stijl, fallback */
.npvb-applications-list { display: flex; flex-direction: column; gap: 14px; }
.npvb-application-card {
    background: #f7faf9;
    padding: 16px;
    border-radius: 6px;
    border-left: 4px solid #3a7f74;
}
.npvb-application-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.npvb-application-header h4 { margin: 0; color: #1f4540; }
.npvb-application-date { font-size: 13px; color: #607d8b; }
.npvb-application-meta { margin-bottom: 12px; color: #455a64; }
.npvb-application-message {
    background: #fff;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Reacties gegroepeerd per vacature - nieuwe compacte stijl */
.npvb-applications-grouped {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.npvb-app-group {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.npvb-app-group[open] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.npvb-app-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #f7faf9;
    list-style: none;
    font-weight: 600;
    transition: background 0.15s;
}
.npvb-app-group-header:hover { background: #eef7f4; }
.npvb-app-group-header::-webkit-details-marker { display: none; }
.npvb-app-group[open] .npvb-app-group-header {
    border-bottom: 1px solid #e0e6ed;
    background: #d4ebe5;
}
.npvb-app-group-title { flex: 1; color: #1f4540; font-size: 15px; }
.npvb-app-group-count {
    background: #3a7f74;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}
.npvb-app-group-arrow {
    color: #607d8b;
    transition: transform 0.2s;
    font-size: 11px;
}
.npvb-app-group[open] .npvb-app-group-arrow {
    transform: rotate(180deg);
}
.npvb-app-group-body {
    padding: 0;
}

/* Individuele reactie binnen een groep */
.npvb-application-item {
    border-bottom: 1px solid #f0f4f8;
}
.npvb-application-item:last-child { border-bottom: none; }
.npvb-application-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
}
.npvb-application-summary:hover { background: #f8fafc; }
.npvb-application-summary::-webkit-details-marker { display: none; }
.npvb-application-name {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
}
.npvb-application-summary-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #607d8b;
    font-size: 13px;
}
.npvb-cv-icon { font-size: 14px; }
.npvb-application-arrow {
    transition: transform 0.2s;
    font-size: 11px;
}
.npvb-application-item[open] .npvb-application-arrow {
    transform: rotate(180deg);
}
.npvb-application-item[open] .npvb-application-summary {
    background: #f7faf9;
    border-bottom: 1px solid #e0e6ed;
}
.npvb-application-details {
    padding: 14px 16px 16px;
    background: #fafbfc;
}
.npvb-application-details .npvb-application-meta {
    margin-bottom: 10px;
    font-size: 14px;
}
.npvb-application-details .npvb-application-message {
    background: #fff;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid #e0e6ed;
}

/* Role selector (registratie) */
.npvb-role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.npvb-role-option { cursor: pointer; }
.npvb-role-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.npvb-role-card {
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
    background: #fff;
}
.npvb-role-card:hover { border-color: #3a7f74; }
.npvb-role-option input[type="radio"]:checked + .npvb-role-card {
    border-color: #3a7f74;
    background: #d4ebe5;
}
.npvb-role-icon { font-size: 36px; margin-bottom: 8px; }
.npvb-role-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
.npvb-role-card small { color: #607d8b; }

.npvb-link { color: #3a7f74; text-decoration: none; }
.npvb-link:hover { text-decoration: underline; }

/* Mobile responsive */
@media (max-width: 1024px) {
    .npvb-filter-row { grid-template-columns: 1fr 1fr; }
    .npvb-filter-submit { grid-column: span 2; }
}
@media (max-width: 768px) {
    .npvb-form-row,
    .npvb-form-row.three-cols { grid-template-columns: 1fr; }
    .npvb-filter-row { grid-template-columns: 1fr; }
    .npvb-filter-submit { grid-column: span 1; }
    .npvb-role-selector { grid-template-columns: 1fr; }
    .npvb-page-title { font-size: 22px; }
    .npvb-table { font-size: 13px; min-width: 520px; }
    .npvb-table th, .npvb-table td { padding: 8px; }
    .npvb-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -10px;
        padding: 0 10px;
    }
    .npvb-search-layout { grid-template-columns: 1fr !important; }
    .npvb-sidebar { order: 2; position: static; }
    .npvb-results-column { order: 1; }
    .npvb-card-with-logo { flex-direction: column; }
    .npvb-card-logo { width: 60px; height: 60px; }
    .npvb-vacature-header.npvb-has-logo { flex-direction: column; align-items: flex-start; }
    .npvb-vacature-logo { width: 60px; height: 60px; }
    .npvb-account-header { flex-direction: column; align-items: flex-start; }
    .npvb-section-header { flex-direction: column; align-items: flex-start; }
    .npvb-form-actions { flex-direction: column; align-items: stretch; }
    .npvb-form-actions .npvb-btn { width: 100%; text-align: center; }
    .npvb-actions-cell { white-space: normal; }
    .npvb-application-summary { flex-wrap: wrap; gap: 6px; }
    .npvb-application-summary-meta { flex-wrap: wrap; }
    .npvb-card-footer { flex-direction: column; align-items: stretch; }
    .npvb-card-footer .npvb-btn { text-align: center; }
}

/* Scrollbare tabel wrapper */
.npvb-table-wrap {
    overflow-x: visible;
}
@media (max-width: 768px) {
    .npvb-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Vacature header (klein onder de titel) */
.npvb-vacature-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #f7faf9;
    border-radius: 6px;
    font-size: 14px;
    color: #455a64;
}
.npvb-header-item { display: inline-flex; align-items: center; gap: 4px; }
.npvb-header-item a { color: #3a7f74; text-decoration: none; }
.npvb-header-item a:hover { text-decoration: underline; }
.npvb-header-sep { color: #b0bec5; margin: 0 4px; }

/* Search page met sidebar */
.npvb-search-page { max-width: 1200px; }
.npvb-search-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    margin-top: 16px;
}
.npvb-sidebar {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 16px;
    align-self: start;
    position: sticky;
    top: 20px;
}
.npvb-sidebar-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #1f4540;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e6ed;
}
.npvb-functie-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 600px;
    overflow-y: auto;
}
.npvb-functie-list li { margin: 0; }
.npvb-functie-list a {
    display: block;
    padding: 7px 10px;
    color: #455a64;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.15s;
}
.npvb-functie-list a:hover { background: #f7faf9; color: #3a7f74; }
.npvb-functie-list li.npvb-active a {
    background: #d4ebe5;
    color: #2d635a;
    font-weight: 600;
}
.npvb-count { color: #90a4ae; font-size: 12px; }
.npvb-functie-list li.npvb-active .npvb-count { color: #3a7f74; }

/* Functiegebied badge op cards */
.npvb-badge-func { background: #fff3e0; color: #e65100; }
.npvb-badge-niveau { background: #e8f5e9; color: #2e7d32; }

/* Vacature header met logo */
.npvb-vacature-header.npvb-has-logo {
    display: flex;
    gap: 16px;
    align-items: center;
}
.npvb-vacature-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}
.npvb-vacature-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.npvb-vacature-header-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* Vacature cards met logo */
.npvb-card-with-logo {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.npvb-card-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}
.npvb-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.npvb-card-body { flex: 1; min-width: 0; }
.npvb-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.npvb-card-date {
    color: #90a4ae;
    font-size: 13px;
}

/* "Anders" tekstveld styling */
.npvb-anders-wrap input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cdd5df;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

/* iOS zoomt automatisch in op inputs <16px - voorkomen */
@media (max-width: 768px) {
    .npvb-form input[type="text"],
    .npvb-form input[type="email"],
    .npvb-form input[type="password"],
    .npvb-form input[type="url"],
    .npvb-form input[type="tel"],
    .npvb-form select,
    .npvb-form textarea,
    .npvb-filter-field input,
    .npvb-filter-field select,
    .npvb-sidebar-form input,
    .npvb-sidebar-form select {
        font-size: 16px !important;
    }
}


/* Privacy & Account sectie */
.npvb-privacy-section {
    border-left: 4px solid #c62828;
    background: #fff8f8;
}
.npvb-privacy-info {
    color: #5d4037;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}


/* Retention notice (info over 4-weken bewaartermijn) */
.npvb-retention-notice {
    background: #d4ebe5;
    border-left: 3px solid #3a7f74;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #1f4540;
    line-height: 1.5;
}

/* Info box op dashboard (privacy-by-design uitleg) */
.npvb-info-box {
    background: #d4ebe5;
    border-left: 4px solid #3a7f74;
    border-radius: 4px;
    padding: 16px 20px;
    color: #1f4540;
}
.npvb-info-box p {
    color: #1f4540;
}
.npvb-info-box ul li {
    color: #1f4540;
}

/* ===== ZOEKEN PAGINA (split-view layout) ===== */

.npvb-zoeken-app {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 16px;
}

/* Bovenste zoekbalk */
.npvb-search-bar {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr 170px auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}
.npvb-search-field {
    position: relative;
    background: #f5f7fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}
.npvb-search-field input,
.npvb-search-field select {
    border: none;
    background: transparent;
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    outline: none;
    color: #1f4540;
    font-family: inherit;
}
.npvb-search-icon {
    color: #90a4ae;
    margin-right: 8px;
    font-size: 16px;
}
.npvb-search-clear {
    background: none;
    border: none;
    color: #90a4ae;
    cursor: pointer;
    font-size: 20px;
    padding: 0 8px;
}
.npvb-search-clear:hover { color: #455a64; }
.npvb-search-radius select {
    cursor: pointer;
    padding-right: 16px;
}
.npvb-search-submit {
    background: #fff;
    color: #3a7f74;
    border: 2px solid #3a7f74;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.npvb-search-submit:hover {
    background: #3a7f74;
    color: #fff;
}

/* Filter bar */
.npvb-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}
.npvb-filter-dropdown {
    position: relative;
}
.npvb-filter-btn {
    background: #fff;
    border: 1px solid #cdd5df;
    border-radius: 24px;
    padding: 9px 16px;
    font-size: 14px;
    cursor: pointer;
    color: #455a64;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: all 0.15s;
}
.npvb-filter-btn:hover {
    border-color: #3a7f74;
    color: #3a7f74;
}
.npvb-filter-dropdown.npvb-active .npvb-filter-btn {
    background: #d4ebe5;
    border-color: #3a7f74;
    color: #1f4540;
    font-weight: 600;
}
.npvb-filter-arrow {
    font-size: 10px;
    transition: transform 0.15s;
}
.npvb-filter-dropdown.npvb-open .npvb-filter-arrow {
    transform: rotate(180deg);
}
.npvb-filter-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 220px;
    z-index: 100;
    padding: 8px 0;
}
.npvb-filter-menu-scroll {
    max-height: 320px;
    overflow-y: auto;
}
.npvb-filter-dropdown.npvb-open .npvb-filter-menu {
    display: block;
}
.npvb-filter-menu a {
    display: block;
    padding: 10px 16px;
    color: #455a64;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.1s;
}
.npvb-filter-menu a:hover {
    background: #f5f8fb;
    color: #3a7f74;
}
.npvb-filter-menu a.npvb-checked {
    background: #d4ebe5;
    color: #1f4540;
    font-weight: 600;
}
.npvb-filter-menu a.npvb-checked::before {
    content: '✓ ';
    margin-right: 4px;
}
.npvb-filter-clear {
    background: none;
    border: none;
    color: #c62828;
    font-size: 13px;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.npvb-filter-clear:hover { background: #ffebee; }
.npvb-filter-clear-badge {
    background: #c62828;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Resultaten teller */
.npvb-results-header {
    color: #455a64;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Split layout */
.npvb-split-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 16px;
    align-items: start;
}

/* Vacature lijst (links) */
.npvb-vacatures-list {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 4px;
}
.npvb-vacature-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.15s;
}
.npvb-vacature-card:hover {
    border-color: #d4ebe5;
    box-shadow: 0 2px 8px rgba(58, 127, 116, 0.1);
}
.npvb-vacature-card.npvb-active {
    border-color: #3a7f74;
    box-shadow: 0 2px 8px rgba(58, 127, 116, 0.15);
}
.npvb-vacature-card .npvb-card-title {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: #1f4540;
    font-weight: 700;
}
.npvb-vacature-card .npvb-card-company {
    color: #455a64;
    font-size: 14px;
    margin-bottom: 2px;
}
.npvb-vacature-card .npvb-card-location {
    color: #90a4ae;
    font-size: 13px;
    margin-bottom: 12px;
}
.npvb-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.npvb-card-tag {
    background: #f5f8fb;
    color: #455a64;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
}
.npvb-vacature-card .npvb-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #90a4ae;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.npvb-card-link {
    color: #90a4ae;
    text-decoration: none;
    font-size: 16px;
}
.npvb-card-link:hover { color: #3a7f74; }

/* Preview pane (rechts) */
.npvb-preview-pane {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}
.npvb-preview-loading,
.npvb-preview-empty {
    text-align: center;
    color: #90a4ae;
    padding: 60px 20px;
    font-size: 14px;
}
.npvb-preview-date {
    color: #90a4ae;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.npvb-preview-title {
    font-size: 26px;
    color: #1f4540;
    margin: 0 0 20px 0;
    line-height: 1.3;
}
.npvb-preview-company-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e6ed;
}
.npvb-preview-logo {
    width: 80px;
    height: 56px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.npvb-preview-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.npvb-preview-company {
    flex: 1;
    min-width: 0;
}
.npvb-preview-company strong {
    display: block;
    color: #1f4540;
    font-size: 16px;
    margin-bottom: 4px;
}
.npvb-preview-location {
    color: #90a4ae;
    font-size: 14px;
}
.npvb-preview-apply-btn {
    background: #3a7f74;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.15s;
}
.npvb-preview-apply-btn:hover {
    background: #2d635a;
    color: #fff;
}

/* Preview meta grid */
.npvb-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.npvb-preview-meta-card {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.npvb-preview-meta-icon {
    font-size: 20px;
    color: #3a7f74;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #d4ebe5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.npvb-preview-meta-card > div {
    flex: 1;
    min-width: 0;
}
.npvb-preview-meta-label {
    display: block;
    font-size: 11px;
    color: #90a4ae;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.npvb-preview-meta-value {
    display: block;
    color: #1f4540;
    font-size: 14px;
    font-weight: 600;
}

.npvb-preview-section-title {
    font-size: 18px;
    color: #1f4540;
    margin: 24px 0 12px 0;
}
.npvb-preview-description {
    color: #455a64;
    line-height: 1.7;
    font-size: 15px;
}
.npvb-preview-description p { margin-bottom: 12px; }
.npvb-preview-description h2,
.npvb-preview-description h3,
.npvb-preview-description h4 { color: #1f4540; margin: 18px 0 8px 0; }
.npvb-preview-description ul,
.npvb-preview-description ol { padding-left: 20px; margin-bottom: 12px; }
.npvb-preview-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e6ed;
}

.npvb-no-results {
    background: #fff;
    border-radius: 10px;
    padding: 40px 24px;
    text-align: center;
    color: #455a64;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .npvb-search-bar {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .npvb-search-submit {
        width: 100%;
    }
    .npvb-split-layout {
        grid-template-columns: 1fr;
    }
    .npvb-vacatures-list {
        max-height: none;
        overflow: visible;
    }
    .npvb-preview-pane {
        display: none; /* standaard verborgen op mobiel, wordt zichtbaar na klik */
        max-height: none;
        position: static;
        margin-top: 16px;
    }
    .npvb-preview-pane.npvb-preview-visible {
        display: block;
    }
    .npvb-filter-bar {
        gap: 6px;
    }
    .npvb-filter-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .npvb-filter-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: auto;
        max-height: 60vh;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .npvb-zoeken-app {
        padding: 0 8px;
    }
    .npvb-vacature-card {
        padding: 14px 16px;
    }
    .npvb-vacature-card .npvb-card-title {
        font-size: 16px;
    }
}

/* Card header met logo */
.npvb-vacature-card .npvb-card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.npvb-card-logo-thumb {
    width: 56px;
    height: 56px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
}
.npvb-card-logo-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.npvb-card-header-text {
    flex: 1;
    min-width: 0;
}
.npvb-card-header-text .npvb-card-title {
    margin: 0 0 4px 0;
}
.npvb-card-header-text .npvb-card-company,
.npvb-card-header-text .npvb-card-location {
    margin-bottom: 2px;
}

/* Grote solliciteren knop in footer preview */
.npvb-preview-apply-btn-large {
    display: block;
    text-align: center;
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== SOLLICITEER MODAL ===== */
.npvb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.npvb-modal.npvb-modal-open {
    display: flex;
}
.npvb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 69, 64, 0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}
.npvb-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    z-index: 1;
}
.npvb-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #90a4ae;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s;
}
.npvb-modal-close:hover {
    background: #f5f8fb;
    color: #455a64;
}
.npvb-modal-title {
    font-size: 22px;
    color: #1f4540;
    margin: 0 0 6px 0;
    padding-right: 40px;
}
.npvb-modal-vacature {
    color: #455a64;
    font-size: 15px;
    margin: 0 0 20px 0;
    font-weight: 500;
}
.npvb-modal-body {
    margin-top: 12px;
}
.npvb-modal-info {
    background: #d4ebe5;
    border-left: 3px solid #3a7f74;
    color: #1f4540;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.npvb-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .npvb-modal-dialog {
        padding: 24px 20px;
    }
    .npvb-modal-title {
        font-size: 19px;
    }
    .npvb-modal-actions {
        flex-direction: column-reverse;
    }
    .npvb-modal-actions .npvb-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== FLOATING ACCOUNT WIDGET ===== */
.npvb-account-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}
.npvb-account-widget-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 30px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #1f4540;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    font-family: inherit;
}
.npvb-account-widget-toggle:hover {
    border-color: #3a7f74;
    box-shadow: 0 2px 12px rgba(58, 127, 116, 0.2);
}
.npvb-account-avatar {
    width: 28px;
    height: 28px;
    background: #3a7f74;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}
.npvb-account-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.npvb-account-arrow {
    font-size: 10px;
    color: #90a4ae;
    margin-left: 2px;
    transition: transform 0.15s;
}
.npvb-account-widget.npvb-open .npvb-account-arrow {
    transform: rotate(180deg);
}
.npvb-account-widget-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 240px;
    overflow: hidden;
}
.npvb-account-widget.npvb-open .npvb-account-widget-menu {
    display: block;
}
.npvb-account-widget-header {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e6ed;
    background: #f7faf9;
}
.npvb-account-widget-header strong {
    display: block;
    color: #1f4540;
    font-size: 14px;
    margin-bottom: 2px;
}
.npvb-account-widget-header small {
    color: #90a4ae;
    font-size: 12px;
}
.npvb-account-widget-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #455a64;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.1s;
}
.npvb-account-widget-link:hover {
    background: #f7faf9;
    color: #3a7f74;
}
.npvb-account-widget-link span {
    width: 20px;
    text-align: center;
    color: #90a4ae;
    font-size: 14px;
}
.npvb-account-widget-link:hover span { color: #3a7f74; }
.npvb-account-widget-logout {
    border-top: 1px solid #e0e6ed;
    color: #c62828;
}
.npvb-account-widget-logout:hover {
    background: #ffebee;
    color: #c62828;
}
.npvb-account-widget-logout:hover span { color: #c62828; }

/* Mobiel: kleinere widget */
@media (max-width: 600px) {
    .npvb-account-widget {
        bottom: 16px;
        right: 16px;
    }
    .npvb-account-name {
        display: none;
    }
    .npvb-account-arrow {
        display: none;
    }
    .npvb-account-widget-toggle {
        padding: 4px;
        border-radius: 50%;
    }
    .npvb-account-widget-menu {
        right: 0;
        min-width: 220px;
    }
}

/* Consistente afstanden in vacature beschrijving */
.npvb-preview-description h2,
.npvb-preview-description h3,
.npvb-preview-description h4,
.npvb-vacature-body h2,
.npvb-vacature-body h3,
.npvb-vacature-body h4,
.single-vacature .post-content h2,
.single-vacature .post-content h3,
.single-vacature .post-content h4 {
    margin-top: 24px !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
}

.npvb-preview-description h2 + p,
.npvb-preview-description h3 + p,
.npvb-preview-description h4 + p,
.npvb-vacature-body h2 + p,
.npvb-vacature-body h3 + p,
.npvb-vacature-body h4 + p,
.single-vacature .post-content h2 + p,
.single-vacature .post-content h3 + p,
.single-vacature .post-content h4 + p {
    margin-top: 0 !important;
}

.npvb-preview-description p,
.npvb-vacature-body p {
    margin: 0 0 12px 0;
}

.npvb-preview-description ul,
.npvb-preview-description ol,
.npvb-vacature-body ul,
.npvb-vacature-body ol {
    margin: 0 0 16px 0;
    padding-left: 22px;
}

.npvb-preview-description ul li,
.npvb-preview-description ol li,
.npvb-vacature-body ul li,
.npvb-vacature-body ol li {
    margin-bottom: 4px;
}

/* Verberg lege paragrafen die ondanks alles nog ontstaan */
.npvb-preview-description p:empty,
.npvb-vacature-body p:empty {
    display: none;
}

/* ===== MOBIELE FILTER SHEET ===== */
.npvb-mobile-filters-toggle,
.npvb-mobile-filters-close,
.npvb-mobile-filters-title {
    display: none;
}

.npvb-filter-dropdowns-wrap {
    display: contents;
}

@media (max-width: 900px) {
    .npvb-mobile-filters-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #cdd5df;
        border-radius: 24px;
        padding: 9px 18px;
        cursor: pointer;
        color: #455a64;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
    }
    .npvb-mobile-filters-toggle:hover {
        border-color: #3a7f74;
        color: #3a7f74;
    }
    .npvb-mobile-filter-count {
        background: #3a7f74;
        color: #fff;
        border-radius: 50%;
        min-width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        padding: 0 6px;
    }

    /* Verberg dropdowns wrap standaard op mobiel */
    .npvb-filter-dropdowns-wrap {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 9998;
        padding: 60px 20px 20px;
        overflow-y: auto;
        flex-direction: column;
        gap: 12px;
    }
    .npvb-filter-dropdowns-wrap.npvb-mobile-open {
        display: flex;
    }
    .npvb-mobile-filters-close {
        display: flex;
        position: absolute;
        top: 12px;
        right: 16px;
        background: none;
        border: none;
        font-size: 32px;
        line-height: 1;
        color: #455a64;
        cursor: pointer;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .npvb-mobile-filters-title {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #1f4540;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid #e0e6ed;
    }
    .npvb-filter-dropdowns-wrap .npvb-filter-dropdown {
        width: 100%;
    }
    .npvb-filter-dropdowns-wrap .npvb-filter-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        font-size: 15px;
    }
    .npvb-filter-dropdowns-wrap .npvb-filter-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #e0e6ed;
        margin-top: 6px;
    }
    .npvb-filter-dropdowns-wrap .npvb-filter-menu-scroll {
        max-height: 200px;
    }
}

/* WordPress lost password / reset password pagina iets nettere styling */
body.login.wp-core-ui #login {
    padding-top: 5%;
}
body.login.wp-core-ui #login h1 a {
    background-image: none;
    text-indent: 0;
    color: #3a7f74;
    font-size: 28px;
    width: auto;
    height: auto;
}
body.login.wp-core-ui #wp-submit {
    background: #3a7f74 !important;
    border-color: #3a7f74 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* ===== VACATURE PLAATSEN: SECTIES ===== */
.npvb-form-section {
    border: none;
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 0 0 16px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e0e6ed;
}
.npvb-form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f4540;
    padding: 0 0 16px 0;
    margin: 0 0 16px 0;
    border-bottom: 2px solid #e0e6ed;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    float: none;
}
.npvb-form-section-num {
    background: #3a7f74;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .npvb-form-section {
        padding: 18px 16px;
    }
    .npvb-form-section-title {
        font-size: 16px;
    }
}

/* Contactblok in preview */
.npvb-preview-contact {
    background: #f7faf9;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 12px 0 24px 0;
}
.npvb-preview-contact-item {
    margin-bottom: 6px;
    font-size: 14px;
    color: #455a64;
}
.npvb-preview-contact-item:last-child {
    margin-bottom: 0;
}
.npvb-preview-contact-item a {
    color: #3a7f74;
    text-decoration: none;
}
.npvb-preview-contact-item a:hover {
    text-decoration: underline;
}
