@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --heading-font: 'Asap Condensed', sans-serif;
    --heading-color: #063;
}

html {
    font-size: 20px;
}

/* Admin: compactere basis (12.8px ≈ 80% van 16px) */
html.admin-html {
    font-size: 12.8px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1,
h2,
h3,
.header-title,
.page-title,
.section-title,
.event-title,
.card-title,
.agenda-titel {
    font-family: var(--heading-font);
    color: var(--heading-color);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.header h1 i {
    margin-right: 0.5rem;
    color: #ffd700;
}

.header nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-info {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.back-button-container {
    margin-bottom: 2rem;
    text-align: left;
}

/* Checkbox groups styling */
.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: center;
}

.checkbox-group wa-checkbox {
    margin-bottom: 0;
}

/* Summernote lijst styling */
.note-editable ul {
    margin-left: 20px !important;
    list-style-type: disc !important;
}

.note-editable ol {
    margin-left: 20px !important;
    list-style-type: decimal !important;
}

.note-editable li {
    margin-left: 0 !important;
    display: list-item !important;
}

.page-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem; /* Extra space before content */
}

.hero h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Events grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem; /* Extra space before footer */
    padding-bottom: 2rem; /* Additional padding */
}

/* Organisaties grid */
.organisaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem; /* Extra space before footer */
    padding-bottom: 2rem; /* Additional padding */
}

/* Web Awesome Card Compatibility */
.event-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Web Awesome card styling */
wa-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

wa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Organisatie cards */
.organisatie-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organisatie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.organisatie-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.organisatie-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.organisatie-description {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.organisatie-description p {
    color: #6c757d;
    line-height: 1.6;
}

.organisatie-details {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
}

.organisatie-contact {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.organisatie-contact i {
    margin-right: 0.5rem;
    color: #28a745;
}

.organisatie-contact a {
    color: #28a745;
    text-decoration: none;
}

.organisatie-contact a:hover {
    text-decoration: underline;
}

.organisatie-keuze-banner {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: #4a5568;
}

.organisatie-keuze-banner p {
    margin: 0;
    line-height: 1.5;
}

.organisatie-keuze-banner a {
    color: #2c5282;
    text-decoration: none;
}

.organisatie-keuze-banner a:hover {
    text-decoration: underline;
}

.organisatie-actions {
    padding: 1.5rem;
    text-align: center;
}

.event-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.event-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.event-date, .event-time {
    display: inline-block;
    margin-right: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-date i, .event-time i {
    margin-right: 0.3rem;
}

.event-time,
.event-meta-time,
.org-template-event-time {
    white-space: nowrap;
}

.event-description {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.event-description p {
    color: #6c757d;
    line-height: 1.6;
}

.event-followups ul,
.org-template-event-description ul {
    margin: 0 0 0.6rem 0;
    padding-left: 0;
    list-style: disc;
    list-style-position: inside;
}

.event-followups ul li,
.org-template-event-description ul li {
    margin: 0 0 0.35rem 0;
}

.event-followups h4 {
    margin: 0 0 0.6rem 0;
    font-size: inherit;
    font-weight: 700;
}

.event-details {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
}

.event-location, .event-doelgroep, .event-capacity {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.event-location i, .event-doelgroep i, .event-capacity i {
    margin-right: 0.5rem;
    color: #667eea;
}

.event-actions {
    padding: 1.5rem;
    text-align: center;
}

/* Web Awesome Button Compatibility */
/* Remove conflicting button styles to let Web Awesome handle them */
.btn {
    /* Keep only essential layout properties */
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.btn i {
    margin-right: 0.5rem;
}

/* Web Awesome Button spacing adjustments */
wa-button {
    margin: 0.25rem;
}

wa-button[href] {
    text-decoration: none;
}

/* Button group spacing for Web Awesome */
.btn-group {
    display: flex;
    gap: 0.5rem;
}

.btn-group wa-button {
    margin: 0;
}

.btn-group wa-button:not(:last-child) {
    margin-right: 0.5rem;
}

/* Forms */
.form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: none;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Inschrijfmodus-keuze (bijeenkomst formulier) */
.form-group.inschrijf-type-keuze > label:first-of-type {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group.inschrijf-type-keuze .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.form-group.inschrijf-type-keuze .radio-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0 !important;
    padding: 0.85rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.45;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group.inschrijf-type-keuze .radio-label:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.form-group.inschrijf-type-keuze .radio-label:has(input:checked) {
    border-color: #005BA6;
    background: #eef6fc;
    box-shadow: 0 0 0 1px rgba(0, 91, 166, 0.15);
}

.form-group.inschrijf-type-keuze .radio-label input[type="radio"] {
    margin: 0.15rem 0 0;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #005BA6;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Één verplicht-indicator:
   - WA componenten tonen zelf een indicator bij required
   - Voor native velden voegen we hier de indicator toe */
.form-group label:has(+ input[required])::after,
.form-group label:has(+ select[required])::after,
.form-group label:has(+ textarea[required])::after,
.form-group label.label-required-indicator::after {
    content: ' *';
    color: #c0392b;
    font-weight: 600;
}

/* Web Awesome Form Component Compatibility */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #667eea;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Web Awesome form components — geen dubbele rand: thema/native.css stylen het veld al */
.form-group wa-input,
.form-group wa-textarea,
.form-group wa-select {
    width: 100%;
    display: block;
}

.form-group wa-input::part(input),
.form-group wa-textarea::part(textarea),
.form-group wa-select::part(select) {
    width: 100%;
}

/* Forceer consistente label-typografie binnen Web Awesome shadow parts */
.form-group wa-input::part(form-control-label),
.form-group wa-input::part(label),
.form-group wa-select::part(form-control-label),
.form-group wa-select::part(label),
.form-group wa-textarea::part(form-control-label),
.form-group wa-textarea::part(label) {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Web Awesome select gebruikt intern 'display-input' in de combobox */
.form-group wa-select::part(display-input),
.form-group wa-select::part(listbox) {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-help {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Web Awesome Callout Compatibility */
/* Keep alert styles for backward compatibility but add Web Awesome support */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Web Awesome callout styling */
wa-callout {
    margin-bottom: 1.5rem;
    display: block;
}

wa-callout i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Admin data tables */
.admin-page .site-page-content .container {
    max-width: 1120px;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-page .data-table {
    min-width: 880px;
}

.data-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.data-table .col-datum {
    min-width: 150px;
    white-space: nowrap;
}

.data-table .col-tijd {
    min-width: 130px;
    white-space: nowrap;
}

.data-table .col-acties {
    min-width: 220px;
    width: 1%;
    white-space: nowrap;
}

.vervolgdata-hint {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: normal;
    margin-top: 0.15rem;
}

.action-buttons {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
}

.action-buttons wa-button {
    flex-shrink: 0;
}

/* Status badges */
.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-aanwezig {
    background: #d4edda;
    color: #155724;
}

.status-afwezig {
    background: #f8d7da;
    color: #721c24;
}

.status-wachtlijst {
    background: #fff3cd;
    color: #856404;
}

.status-reservelijst {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #fff;
    font-weight: 600;
}

/* Event details styling */
.event-registration-period,
.event-reserve-list {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.event-registration-period i,
.event-reserve-list i {
    margin-right: 0.5rem;
    color: #667eea;
}

/* Web Awesome Checkbox Compatibility */
/* Keep checkbox styles for backward compatibility but add Web Awesome support */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Web Awesome checkbox styling */
wa-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

wa-checkbox::part(checkbox) {
    margin-right: 0.75rem;
}

/* Alert styling voor inschrijvingsperiode */
.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-warning i {
    color: #f39c12;
}

/* Form sections */
.form-section {
    margin: 2rem 0;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section h3 i {
    margin-right: 0.5rem;
    color: #667eea;
}

/* Email status styling */
.status-bevestiging {
    background: #d4edda;
    color: #155724;
}

.status-herinnering {
    background: #fff3cd;
    color: #856404;
}

.status-dagelijks_overzicht {
    background: #cce5ff;
    color: #004085;
}

.status-verzonden {
    background: #d4edda;
    color: #155724;
}

.status-mislukt {
    background: #f8d7da;
    color: #721c24;
}

.status-wachtrij {
    background: #fff3cd;
    color: #856404;
}

/* Lijsten beheer styling */
.list-items {
    margin-top: 1rem;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.list-item .list-item-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.list-item .item-block {
    flex: 1;
    min-width: 0;
}

.list-item .list-item-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.inline-form {
    display: inline;
}

.form-inline {
    display: flex;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.form-inline .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* HTML editor styling */
.html-editor {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 0.75rem;
    resize: vertical;
    min-height: 120px;
}

.html-editor:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

/* Vragen configuratie styling */

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Tijd velden styling */
.form-row .form-group {
    flex: 1;
    margin-right: 1rem;
}

.form-row .form-group:last-child {
    margin-right: 0;
}

/* Event programma styling */
.event-programma {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border-left: 3px solid #667eea;
}

.event-programma h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-programma h4 i {
    margin-right: 0.5rem;
    color: #667eea;
}

.event-programma p {
    margin: 0;
    line-height: 1.6;
}

/* Dashboard */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-link:focus-visible .stat-card {
    outline: 2px solid #379e32;
    outline-offset: 2px;
}

.stat-icon {
    font-size: 3rem;
    color: #667eea;
    margin-right: 1.5rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #6c757d;
    font-size: 1.1rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-section h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.dashboard-section h3 i {
    margin-right: 0.5rem;
    color: #667eea;
}

.dashboard-actions {
    text-align: center;
    margin-top: 2rem;
}

.dashboard-actions .btn {
    margin: 0 0.5rem;
}

/* Login page */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.login-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.login-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    opacity: 0.9;
}

.login-box .form {
    padding: 2rem;
    box-shadow: none;
    max-width: none;
}

.login-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form wa-input {
    width: 100%;
}

.login-button {
    width: 100%;
    margin-top: 1rem;
}

.login-footer {
    padding: 1rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

/* No data states */
.no-data, .no-events {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 4rem; /* Extra space before footer */
}

.no-data i, .no-events i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-data h3, .no-events h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-data p, .no-events p {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Event info */
.event-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.event-info h3 {
    color: #063;
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.event-meta span {
    color: #6c757d;
    font-size: 0.9rem;
}

.event-meta i {
    margin-right: 0.3rem;
    color: #667eea;
}

.event-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-programma {
    margin-top: 1rem;
}

.event-programma h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.event-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-details span {
    color: #6c757d;
    font-size: 0.9rem;
}

.event-details i {
    margin-right: 0.3rem;
    color: #667eea;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Web Awesome page footer styling (3.5: footer in slot main-footer i.p.v. wa-page-footer) */
footer[slot="main-footer"] {
    background: transparent;
    color: #7a8594;
    text-align: center;
    padding: 1rem 0 1.5rem;
    margin-top: auto; /* Push footer to bottom */
    position: relative;
    z-index: 10;
    clear: both; /* Clear any floating elements */
    border-top: 1px solid #e6e9ee;
}

footer[slot="main-footer"] .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer[slot="main-footer"] p {
    margin: 0;
    opacity: 1;
    font-size: 0.85rem;
}

footer[slot="main-footer"] a {
    color: #6b7482;
    text-decoration: none;
}

footer[slot="main-footer"] a:hover {
    text-decoration: underline;
    color: #4f5866;
}

.footer p {
    opacity: 0.8;
}

/* Utility classes */
.text-muted {
    color: #6c757d !important;
}

.text-warning {
    color: #856404 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .event-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-group {
        flex-direction: column;
    }
}
