/* Agenda Plugin CSS Styles v3.5 - Mobile-First Responsive */

/* CSS Reset en Base Styles */
* {
    box-sizing: border-box;
}

/* Main Container - Mobile First */
.agenda-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Tablet en Desktop */
@media (min-width: 768px) {
    .agenda-container {
        max-width: 1200px;
        padding: 20px;
    }
}

.agenda-overzicht {
    margin-top: 20px;
}

/* Agenda Items - Horizontale Card Layout */
.agenda-item {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.agenda-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Agenda Item Content Layout - Mobile First */
.agenda-item-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
}

/* Tablet en Desktop - Horizontale layout */
@media (min-width: 768px) {
    .agenda-item-content {
        flex-direction: row;
        min-height: 120px;
    }
}

/* Featured Image - Mobile First */
.agenda-featured-image {
    flex: none;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: 200px;
    order: -1; /* Image first on mobile */
}

/* Tablet en Desktop - Links, vaste breedte */
@media (min-width: 768px) {
    .agenda-featured-image {
        flex: 0 0 200px;
        height: auto;
        order: 0; /* Normal order on desktop */
    }
}

.agenda-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.agenda-featured-image:hover img {
    transform: scale(1.05);
}

.agenda-featured-image a {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* Agenda Item Details - Rechts van afbeelding */
.agenda-item-details {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agenda-item h3 {
    margin: 0 0 12px 0;
    color: #333;
    font-size: 1.3em;
    line-height: 1.3;
    font-weight: 600;
}

.agenda-item h3 a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.agenda-item h3 a:hover {
    color: #005177;
}

/* Meta Information */
.agenda-meta {
    margin-bottom: 12px;
}

.agenda-datum {
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    font-size: 0.95em;
}

.agenda-tijd {
    color: #888;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.agenda-gehele-dag {
    color: #28a745;
    font-style: italic;
}

.agenda-locatie {
    color: #555;
    margin-bottom: 0;
    font-size: 0.9em;
}

/* Excerpt */
.agenda-excerpt {
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    font-size: 0.95em;
    flex: 1;
}

/* Lees verder link */
.agenda-lees-verder {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

.agenda-lees-verder-link {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.agenda-lees-verder-link:hover {
    color: #005177;
    background: #e3f2fd;
    border-color: #0073aa;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

/* Category Colors */
.agenda-item[data-categorie="muziek-festivals"] {
    border-left: 4px solid #e74c3c;
}

.agenda-item[data-categorie="theater-cultuur"] {
    border-left: 4px solid #9b59b6;
}

.agenda-item[data-categorie="kinderen"] {
    border-left: 4px solid #f39c12;
}

.agenda-item[data-categorie="markt"] {
    border-left: 4px solid #27ae60;
}

.agenda-item[data-categorie="sport"] {
    border-left: 4px solid #3498db;
}

.agenda-item[data-categorie="lezing-workshops"] {
    border-left: 4px solid #1abc9c;
}

/* Komende Activiteiten */
.komende-activiteiten {
    margin-top: 30px;
}

.komende-activiteiten h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Responsive Design - Horizontale layout */
@media (max-width: 768px) {
    .agenda-container {
        padding: 10px;
    }
    
    /* Mobile Layout - Stack vertically */
    .agenda-item-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .agenda-featured-image {
        flex: none;
        height: 180px;
        order: -1; /* Image first on mobile */
    }
    
    .agenda-item-details {
        padding: 12px;
    }
    
    .agenda-item h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .agenda-meta {
        margin-bottom: 10px;
    }
    
    .agenda-datum,
    .agenda-tijd,
    .agenda-locatie {
        font-size: 0.9em;
        margin-bottom: 4px;
    }
    
    .agenda-excerpt {
        font-size: 0.9em;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .agenda-lees-verder {
        padding-top: 12px;
    }
    
    .agenda-lees-verder-link {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .agenda-container {
        padding: 8px;
    }
    
    .agenda-item {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .agenda-featured-image {
        height: 160px;
    }
    
    .agenda-item-details {
        padding: 12px;
    }
    
    .agenda-item h3 {
        font-size: 1.1em;
        line-height: 1.2;
    }
    
    .agenda-meta {
        margin-bottom: 8px;
    }
    
    .agenda-datum,
    .agenda-tijd,
    .agenda-locatie {
        font-size: 0.85em;
        margin-bottom: 3px;
    }
    
    .agenda-excerpt {
        font-size: 0.85em;
        margin-bottom: 10px;
    }
    
    .agenda-lees-verder {
        padding-top: 10px;
    }
    
    .agenda-lees-verder-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ========================================
   VERKEERSKALENDER STYLING
   ======================================== */

.verkeer-kalender,
.komende-verkeer {
    margin: 20px 0;
}

.verkeer-item {
    background: #fff;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.verkeer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
    border-color: #c0392b;
}

.verkeer-item-content {
    display: flex;
    align-items: stretch;
}

.verkeer-featured-image {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

.verkeer-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.verkeer-featured-image:hover img {
    transform: scale(1.05);
}

.verkeer-item-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.verkeer-item h3 {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    color: #2c3e50;
}

.verkeer-item h3 a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.verkeer-item h3 a:hover {
    color: #c0392b;
}

.verkeer-meta {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #555;
}

.verkeer-datum {
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 8px;
}

.verkeer-tijd {
    margin-bottom: 8px;
}

.verkeer-tijd strong {
    color: #e74c3c;
}

.verkeer-gehele-dag {
    color: #27ae60;
    font-style: italic;
}

.verkeer-gehele-dag strong {
    color: #27ae60;
}

.verkeer-locatie {
    margin-bottom: 8px;
}

.verkeer-locatie strong {
    color: #e74c3c;
}

.verkeer-excerpt {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #666;
    flex: 1;
}

.verkeer-lees-verder {
    margin-top: auto;
}

.verkeer-lees-verder-link {
    display: inline-block;
    padding: 8px 16px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.verkeer-lees-verder-link:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.komende-verkeer h3 {
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Verkeerskalender Mobile Responsive */
@media (max-width: 768px) {
    .verkeer-item-content {
        flex-direction: column;
    }
    
    .verkeer-featured-image {
        flex: none;
        height: 200px;
    }
    
    .verkeer-item-details {
        padding: 15px;
    }
    
    .verkeer-item h3 {
        font-size: 1.2em;
    }
    
    .verkeer-meta {
        font-size: 0.9em;
    }
}

/* ========================================
   AGENDA FILTER STYLES - MOOIE COMPACTE LAYOUT
   ======================================== */

.agenda-filter-container {
    margin: 20px 0;
}

.agenda-filter-form {
    margin-bottom: 30px;
}

/* Desktop Layout - Compact Grid */
.agenda-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    align-items: end;
}

/* Filter groups met labels */
.agenda-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-date-picker,
.agenda-category-filter,
.agenda-gemeente-filter,
.agenda-search {
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.agenda-date-picker:focus,
.agenda-category-filter:focus,
.agenda-gemeente-filter:focus,
.agenda-search:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    transform: translateY(-1px);
}

/* Actions container */
.agenda-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
}

/* Submit button styling */
.agenda-filter-submit {
    padding: 12px 20px;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

.agenda-filter-submit:hover {
    background: linear-gradient(135deg, #005177 0%, #003d5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
}

.agenda-filter-reset {
    padding: 10px 16px;
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.agenda-filter-reset:hover {
    background: linear-gradient(135deg, #545b62 0%, #3d4449 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
    color: white;
    text-decoration: none;
}

/* Loading state */
.agenda-filter-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.agenda-filter-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #0073aa;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Agenda Results Styles */
.agenda-results-container {
    margin: 20px 0;
}

.agenda-active-filters {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #0073aa;
}

.agenda-active-filters h3 {
    margin: 0 0 10px 0;
    color: #0073aa;
    font-size: 1.1em;
}

.agenda-filter-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-tag {
    background: #0073aa;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.clear-filters {
    background: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.clear-filters:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
}

.agenda-results h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Responsive Filter Styles - met labels */
@media (max-width: 768px) {
    .agenda-filters {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .agenda-filter-group {
        gap: 6px;
    }
    
    .agenda-filter-group label {
        font-size: 13px;
    }
    
    .agenda-date-picker,
    .agenda-category-filter,
    .agenda-search {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .agenda-filter-submit {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========================================
   ADMIN STYLING VOOR WORDPRESS BACKEND
   ======================================== */

/* Meta box styling */
#agenda_meta_box .form-table th {
    width: 120px;
    padding: 15px 10px 15px 0;
}

#agenda_meta_box .form-table td {
    padding: 15px 10px;
}

#agenda_meta_box input[type="date"],
#agenda_meta_box input[type="time"],
#agenda_meta_box select {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#agenda_meta_box input[type="date"]:focus,
#agenda_meta_box input[type="time"]:focus,
#agenda_meta_box select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Locatie meta box styling */
#locatie_meta_box .form-table th {
    width: 120px;
    padding: 15px 10px 15px 0;
}

#locatie_meta_box .form-table td {
    padding: 15px 10px;
}

#locatie_meta_box input[type="text"],
#locatie_meta_box input[type="email"],
#locatie_meta_box input[type="url"] {
    width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#locatie_meta_box input[type="text"]:focus,
#locatie_meta_box input[type="email"]:focus,
#locatie_meta_box input[type="url"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Debug styling */
.agenda-debug {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 14px;
}

.agenda-debug h3 {
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.agenda-debug p {
    margin: 8px 0;
    line-height: 1.4;
}

.agenda-debug strong {
    color: #0073aa;
}

/* ========================================
   UITGEBREIDE FILTER STYLING - Mobile First
   ======================================== */

.agenda-filter-container {
    margin-bottom: 30px;
}

.agenda-filter-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.agenda-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: end;
}

.agenda-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 4px;
}

.agenda-date-picker,
.agenda-category-filter,
.agenda-gemeente-filter,
.agenda-search {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.agenda-date-picker:focus,
.agenda-category-filter:focus,
.agenda-gemeente-filter:focus,
.agenda-search:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.agenda-filter-submit,
.agenda-filter-reset {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px; /* Touch target */
}

.agenda-filter-submit {
    background: #0073aa;
    color: #fff;
}

.agenda-filter-submit:hover {
    background: #005177;
    transform: translateY(-1px);
}

.agenda-filter-reset {
    background: #6c757d;
    color: #fff;
    margin-left: 10px;
}

.agenda-filter-reset:hover {
    background: #545b62;
    transform: translateY(-1px);
}

/* Tablet en Desktop - Grid layout */
@media (min-width: 768px) {
    .agenda-filters {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .agenda-filter-form {
        padding: 25px;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .agenda-filters {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ACTIVE FILTERS STYLING */
.agenda-active-filters {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.agenda-active-filters h3 {
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 16px;
    font-weight: 600;
}

.agenda-filter-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.filter-tag {
    background: #1976d2;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.clear-filters {
    background: #f44336;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.clear-filters:hover {
    background: #d32f2f;
    color: #fff;
}

/* RESULTS STYLING */
.agenda-results {
    margin-top: 20px;
}

.agenda-results h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* TOUCH OPTIMIZATIONS */
@media (max-width: 768px) {
    .agenda-filter-submit,
    .agenda-filter-reset {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .agenda-filter-group {
        margin-bottom: 10px;
    }
    
    .agenda-filter-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-tag,
    .clear-filters {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* ========================================
   AGENDA PAGINATION STYLES
   ======================================== */

.agenda-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.agenda-pagination-prev,
.agenda-pagination-next {
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.agenda-pagination-prev:hover,
.agenda-pagination-next:hover {
    background: #005177;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
    color: white;
    text-decoration: none;
}

.agenda-pagination-prev.disabled,
.agenda-pagination-next.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

.agenda-pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.agenda-pagination-number {
    padding: 8px 12px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 35px;
    text-align: center;
    border: 1px solid #e1e5e9;
}

.agenda-pagination-number:hover {
    background: #0073aa;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

.agenda-pagination-number.current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.agenda-pagination-ellipsis {
    padding: 8px 4px;
    color: #666;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE FILTER LAYOUT
   ======================================== */

/* Tablet Layout */
@media (max-width: 1024px) {
    .agenda-filters {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .agenda-filter-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        min-width: auto;
    }
    
    .agenda-filter-submit,
    .agenda-filter-reset {
        flex: 1;
        max-width: 200px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .agenda-filters {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 8px;
    }
    
    .agenda-filter-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .agenda-date-picker,
    .agenda-category-filter,
    .agenda-gemeente-filter,
    .agenda-search {
        padding: 14px 16px;
        font-size: 16px; /* Voorkomt zoom op iOS */
        border-radius: 6px;
    }
    
    .agenda-filter-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    
    .agenda-filter-submit,
    .agenda-filter-reset {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 6px;
    }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
    .agenda-filter-container {
        margin: 15px 0;
    }
    
    .agenda-filters {
        padding: 12px;
        gap: 10px;
    }
    
    .agenda-filter-group label {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .agenda-date-picker,
    .agenda-category-filter,
    .agenda-gemeente-filter,
    .agenda-search {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .agenda-filter-submit,
    .agenda-filter-reset {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Mobile responsive pagination */
@media (max-width: 768px) {
    .agenda-pagination {
        gap: 5px;
        margin: 20px 0;
    }
    
    .agenda-pagination-prev,
    .agenda-pagination-next {
        padding: 6px 12px;
        font-size: 14px;
        min-width: 60px;
    }
    
    .agenda-pagination-number {
        padding: 6px 8px;
        font-size: 14px;
        min-width: 30px;
    }
    
    .agenda-pagination-numbers {
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .agenda-pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .agenda-pagination-numbers {
        order: 2;
    }
    
    .agenda-pagination-prev,
    .agenda-pagination-next {
        order: 1;
        width: 100%;
        max-width: 200px;
    }
}
