@charset "utf-8";

/* ========================================
           CENTRALE CSS FRAMEWORK 
           Voor alle pagina's op de website
           Versie: 2.0 - Uitgebreid met nieuwe componenten
           ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 600px;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-large {
    max-width: 1200px;
    min-height: 300px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-inhoud {
    max-width: 1200px;
    width: 95%;
    /* margin: 0 auto; */
    margin-top: 15px;
    margin-bottom: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    padding-top: 1px !important;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container-inhoud h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Color Variables via CSS */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #667eea;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --orange: #ff7e5f;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--info-color);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ========================================
           NIEUWE COMPONENTEN - v2.0
           ======================================== */

/* Hero Section - Herbruikbaar voor alle pagina's */
.hero-section {
    background: var(--primary-gradient);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float-animation 20s infinite ease-in-out;
}

@keyframes float-animation {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: white;
}

/* Password Toggle voor wachtwoord velden */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    color: #6c757d;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #667eea;
}

.password-toggle:focus {
    outline: none;
}

/* Character Counter voor tekstvelden */
.character-counter {
    text-align: right;
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
}

.character-counter.warning {
    color: #ffc107;
}

.character-counter.error {
    color: #dc3545;
}

.character-counter.success {
    color: #28a745;
}

/* Loading Spinner */
.spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner.show {
    display: block;
}

.spinner.inline {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.back-button:hover {
    gap: 12px;
    color: #5a6fdb;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-box .info-icon {
    color: #667eea;
    margin-right: 10px;
}

/* Security Info Box */
.security-info {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: #667eea;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Wizard/Multi-step Forms */
.wizard-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wizard-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    color: white;
}

.wizard-content {
    padding: 40px;
    min-height: 500px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.wizard-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.wizard-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

/* Save Indicator */
.save-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.save-indicator.show {
    display: flex;
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Tooltip */
.tooltip-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    margin-left: 5px;
    cursor: help;
    position: relative;
}

.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    max-width: 250px;
    z-index: 1000;
}

/* Error States voor formulieren */
.form-control.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-hint {
    color: #6c757d;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
}

/* Badge systeem */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-success {
    background: #28a745;
    color: white;
}

.badge-warning {
    background: #ffc107;
    color: #333;
}

.badge-danger {
    background: #dc3545;
    color: white;
}

/* Radio Options - Modern Style */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.radio-option:hover {
    background: #e8ecff;
    border-color: #667eea;
}

.radio-option.selected {
    background: linear-gradient(to right, #f0f4ff, #e8ecff);
    border-color: #667eea;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #667eea;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }
.p-5 { padding: 50px; }

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.required {
    color: var(--danger-color);
}

/* ========================================
           BESTAANDE COMPONENTEN (behouden)
           ======================================== */

/* Buttons - Herbruikbaar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* Cards - Herbruikbaar */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

/* Alerts - Uitgebreid */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error,
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Hero Section voor booking (behouden) */
.hero-booking {
    background: var(--primary-gradient);
    color: white;
    padding: 40px 0 40px;
    margin-bottom: 0px;
}

.hero-booking h1 {
    color: white;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: var(--white);
    font-size: 85%;
    margin-top: 35px;
    opacity: 0.9;
}

.property-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    margin: 50px 0 40px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step-circle.active {
    background: var(--primary-gradient);
    color: white;
}

.step-circle.completed {
    background: var(--success-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

/* Form Styles */
.form-section {
    margin-bottom: 30px;
}

.form-choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.choice-card {
    padding: 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.choice-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choice-card.selected {
    border-color: #667eea;
    background: linear-gradient(to bottom, #f0f4ff, white);
}

.choice-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #667eea;
}

.choice-card p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

section ol li {
    margin-top: 5px;
    list-style-position: inside;
}

.note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Form Fields */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--danger-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Date Picker Styles */
.date-picker-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guests-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* Quick Links Section */
.quick-links-section {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.quick-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Form Footer */
.form-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.privacy-notice {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.privacy-notice a {
    color: #667eea;
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    margin-top: 80px;
    padding-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.data-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Mobile Table Cards */
.mobile-table {
    display: none;
    margin: 25px 0;
}

.mobile-table-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mobile-table-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-table-header {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.mobile-table-row {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-table-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.mobile-table-value {
    color: #2c3e50;
    padding-left: 10px;
}

/* Table wrapper voor horizontaal scrollen */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px -20px;
}

.table-wrapper table {
    min-width: 500px;
}

.table-scroll-hint {
    display: none;
    text-align: center;
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 10px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sticky header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6rem 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.92));
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    transition: padding .18s ease, box-shadow .18s ease, transform .18s ease, background .22s ease;
}

.sticky-top.scrolled {
    padding: .4rem .8rem;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
    transform: translateY(-1px);
}

.sticky-top .link {
    color: #046c4e;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

/* Checkbox Groups */
.checkbox-group {
    background: #e3e4e6ff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.checkbox-group-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 12px;
}

.checkbox-grid-auto {
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px;
}

.checkbox-grid-solo {
    display: grid;
    grid-template-columns: auto;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    background: #e8ecff;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    user-select: none;
    flex: 1;
    margin-bottom: 0;
}

.text-section {
    background: white;
    padding-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-scroll-hint {
        display: block;
    }
    
    .checkbox-grid {
        display: grid;
        grid-template-columns: none !important;
        gap: 12px;
    }
    
    .checkbox-item {
        display: contents;
        align-items: center;
        padding: 8px;
        background: white;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .data-table {
        display: none;
    }
    
    .mobile-table {
        display: block !important;
    }
    
    .form-row,
    .date-picker-group {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-line {
        display: none;
    }
    
    .property-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .container-inhoud {
        width: 98%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .wizard-content {
        padding: 20px;
    }
    
    .wizard-nav {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .sticky-top {
        padding: .45rem .6rem;
        font-size: 14px;
        justify-content: space-between;
    }
    
    .sticky-top .link {
        font-size: 14px;
    }
}