* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

html {
  background-color: #090D2D;
  margin: 0;
  padding: 0;
}

body {
    font-family: "Lexend", sans-serif;
    background-color: #090D2D;
    min-height: 100vh;
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 80px;
}

svg {
    width: 200px;
    margin: 10px;
}

.svg {
    width: 200px;
    margin: 10px;
}

/* ZOEKBALK + LOGO BOVENIN */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 10px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 82px;
}

.nav-logo {
    width: 120px;
    margin-top: -30px;
    margin-bottom: -30px;
}

.topnav-icon {
    width: 20px;
    height: 20px;
    fill: white;
    display: block;
    margin: 0px;
}

.landenoverzicht {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.parks-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
}

.parks-card p {
    text-decoration: none;
    color: white;
    margin-top: 20px;
}

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

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

.header {
    text-align: left;
    margin: 20px;
    padding-bottom: 5px;
    padding-top: max(20px, env(safe-area-inset-top));
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header h2 {
    font-size: 2rem;
    margin-bottom: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.controls {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
    display: flex;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.9);
    font-family: "Lexend", sans-serif;
}

.btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
}

.spinner {
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

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

.attraction-card {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

/* .attraction-card:hover {
    transform: translateY(-5px);
} */

.attraction-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wait-time {
    font-size: 24px;
    font-weight: bold;
}

.wait-time.short { color: #2ecc71; }
.wait-time.medium { color: #f39c12; }
.wait-time.long { color: #e74c3c; }
.wait-time.closed { color: #95a5a6; }

.single-rider {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    text-align: left;
    border-radius: 6px;
    color: #95a5a6;
    /* color: rgba(255,255,255,0.8); */
    margin-top: 5px;
}

.single-rider.short {
    color: #2ecc71;
    /* color: #d4edda; */
}

.single-rider.medium {
    color: #f39c12;
    /* color: #fff3cd; */
}

.single-rider.long {
    color: #e74c3c;
    /* color: #f8d7da; */
}

.single-rider.closed {
    color: #95a5a6;
    /* color: #d1ecf1; */
}

.status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: normal;
}

.status.open {
    background: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.status.closed {
    background: rgba(231, 77, 60, 0.273);
    color: #E45E4C;
}

.last-updated {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.error, .warning, .success {
    padding: 15px;
    margin: 10px 0;
    border-radius: 25px;
    text-align: center;
}

.error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
}

.warning {
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid rgba(243, 156, 18, 0.5);
}

.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .park-selector select {
        min-width: 250px;
    }
}

/* Mobile-specific styles */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 10px;
    backdrop-filter: blur(20px);
    padding: 10px 0 max(10px, env(safe-area-inset-bottom));
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 15px;
    width: 100%;
}

.nav-item.active,
.nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin: 0px;
    margin-bottom: 4px;
    fill: currentColor;
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
}

/* Adjust main content to account for navbar */
.container {
    padding-bottom: 97px;
    padding-bottom: 72px;
}

/* iOS safe area support */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Hide navbar on desktop */
@media (min-width: 769px) {
    .mobile-navbar {
        display: none;
    }
    .container {
        padding-top: 40px;
        padding-bottom: 20px;
        padding-left: 7%;
        padding-right: 7%;
    }
}

/* Improved mobile header */
@media (max-width: 768px) {
    .header {
        margin-bottom: 20px;
        padding-top: max(20px, env(safe-area-inset-top));
        text-align: center;
        align-items: center;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .controls {
        margin-bottom: 15px;
    }

}

.area-section {
    margin-bottom: 30px;
}

.area-header {
    padding: 20px;
    padding-top: 0px;
    transition: transform 0.3s ease;
}

.area-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.area-subname {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff94;
    margin: 0;
}

.area-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.search-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 2.5px 6px;
    max-width: 160px;
    transition: max-width 0.3s ease, padding 0.3s ease;
}

/* Input en clear knop fade out als ingeklapt */
.search-controls.collapsed .search-input,
.search-controls.collapsed .btn-clear {
    opacity: 0;
    pointer-events: none;
    width: 0;
    padding: 0;
    margin: 0;
}


/* Ingeklapt: alleen het icoon */
.search-controls.collapsed {
    max-width: 40px;
    padding: 4px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: white;
    font-size: 13.5px;
    font-family: "Lexend", sans-serif;
    transition: opacity 0.2s ease;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-input:focus {
    outline: none;
}

/* De knop eromheen om klikgedrag op te vangen */
.search-icon-button {
    background: none;
    border: none;
    padding: 5px;
    margin-right: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-clear {
    padding: 6px 10px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 12px;
}

.btn-clear:hover {
    background: rgba(255,255,255,0.3);
}

.attraction-card.hidden {
    display: none !important;
}

.area-section.hidden {
    display: none !important;
}

.no-results {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    padding: 20px;
    font-style: italic;
}

.socialmediaicon {
    width: 40px;
    height: 40px;
    fill: white;
    margin: 0px;
}

.socialoverzicht {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #090d2d8e;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: rgba(255,255,255,0.1);
    border-radius: 35px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;

    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.7) translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 0px;
    position: relative;
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 0px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: white;
}

.modal-body {
    padding: 20px;
}

.modal-stats-container {
    display: flex;
    flex-direction: column; /* Verticaal stapelen */
}

.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.attraction-info {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.attraction-source {
    color: rgba(255, 255, 255, 0.339);
    margin-top: -7px;
    margin-bottom: 15px;
    font-size: small;
}

.attraction-stats {
    display: grid;
    gap: 15px;
    margin-bottom: 0;
}

.attraction-stats-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stats-section {
    margin-top: 25px;
}

.stats-header {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item-top {
    margin-bottom: 20px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.stat-item.dynamic {
    background: rgba(0, 150, 255, 0.1);
    border-left: 3px solid rgba(0, 150, 255, 0.5);
}

.stat-item.static {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

/* PIN PAGINA */

.pins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

@media (max-width: 768px) {
    .pins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pin-box {
    background: white;
    border-radius: 10px;
    padding: 15px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

/* .pin-box.not-owned {
    background: #f9f9f9;
    border: 2px dashed #ddd;
} */

.pin-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.pin-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
    transition: filter 0.3s;
}

.pin-image.grayscale {
    filter: grayscale(100%);
    opacity: 0.5;
}

.pin-title {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
    margin-left: 10px;
}

.pin-epp {
    font-size: 11px;
    color: #ffffffa6;
    margin-bottom: 5px;
    margin-left: 10px;
}

.legend {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin-bottom: 20px;
    /* justify-content: space-between; */
    align-items: left;
    padding: 20px;
    margin: 20px 0px 25px 0px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* .legend-box.owned {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.legend-box.not-owned {
    background: #f9f9f9;
    border: 2px dashed #ddd;
} */

/* Pin Detail Modal Styles */
.pin-detail-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #090d2d8e;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pin-detail-content {
    background: rgba(255,255,255,0.1);
    border-radius: 35px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    overflow-y: auto;
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pin-detail-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.pin-detail-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
}

.pin-detail-close {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
}

.pin-detail-close:hover {
    color: #ffffff61;
}

.pin-detail-collectie {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
}

.pin-detail-collectie {
    color: #ffffff61;
}

.pin-detail-body {
    padding: 30px;
    padding-top: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

.pin-detail-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.pin-detail-info {
    display: grid;
    gap: 5px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

.info-label {
    font-weight: bold;
    color: #ffffff;
}

.info-value {
    color: #ffffff;
    text-align: right;
}

@media (max-width: 768px) {
    .pin-detail-content {
        width: 100%;
        margin: 10% auto;
    }

    .pin-detail-body {
        padding: 20px;
        padding-top: 0px;
    }

    .pin-detail-header h2 {
        font-size: 20px;
    }
}


.melding {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.succes {
    margin-top: -30px;
}

/* .fout {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} */

.instructie {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.instructie h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.instructie p {
    color: #ffffffac;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.column {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.column h2 {
    color: #fff;
    margin-bottom: 0px;
    font-size: 1.5em;
    text-align: center;
}

.column p {
    color: #ffffff7c;
    margin-bottom: 0px;
    text-align: center;
}

.attractie-lijst, .top7-lijst {
    min-height: 400px;
    padding: 10px;
}

.attractie-item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.attractie-item:hover {
    border-color: #D19F41;
    box-shadow: 0 4px 12px rgba(136, 109, 20, 0.2);
    transform: translateY(-2px);
}

.attractie-item.dragging {
    opacity: 0.5;
}

.top7-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid #D19F41;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: move;
    transition: all 0.3s ease;
    text-align: left;
}

.top7-item:hover {
    border-color: #D19F41;
    box-shadow: 0 4px 12px rgba(136, 109, 20, 0.2);
    transform: translateY(-2px);
}

.positie-badge {
    background: #D19F41;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.punten-badge {
    background: #2ecc71;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.verwijder-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9em;
}

.verwijder-btn:hover {
    background: #e74c3c;
}

.verplaats-knoppen {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.verplaats-btn {
    background: #D19F41;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.7em;
    line-height: 1;
    transition: background 0.3s ease;
}

.verplaats-btn:hover:not(:disabled) {
    background: #d19f41ac;
}

.verplaats-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    color: #999;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone.drag-over {
    border-color: #667eea;
    background: #f0f4ff;
}

.submit-btn {
    background: linear-gradient(135deg, #9A7530 0%, #D19F41 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 20px;
    font-size: 1.2em;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
}

.submit-btn:disabled {
    background: #00000059;
    color: #ffffff7a;
    cursor: not-allowed;
    transform: scale(1);
}

.resultaten-link {
    text-align: center;
    margin-top: 20px;
}

.resultaten-link a {
    color: #D19F41;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
}

.resultaten-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .columns {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2em;
    }

    .top7-item {
        font-size: small;
    }
}

label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.37);
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 20px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 20px 20px 20px 20px;
    color: #D19F41;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #D19F41;
}

input[type="text"],
input[type="date"],
input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 20px 20px 20px 20px;
    color: #D19F41;
}

input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 20px 20px 20px 20px;
    color: #D19F41;
}

input[type=file]::file-selector-button{
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 20px 20px 20px 20px;
    color: #ffffff;
}

.btn-login {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 15px;
    margin-top: 20px;
    color: #fff;
}

.btn-login:hover {
    outline: none;
    border-color: #D19F41;
    color: #D19F41;
}

.admin-section {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: left;
    margin-bottom: 20px;
}

.admin-section h2 {
    margin-left: 10px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

#downloadBtn {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.3s;
    padding: 15px;
    margin-top: -20px;
    color: #fff;
}

#downloadBtn:hover {
    outline: none;
    border-color: #D19F41;
    color: #D19F41;
}

.menu-dropdown {
    position: fixed;
    top: 110px; /* Onder de navbar (82px height + 10px margin + wat ruimte) */
    right: 30px; /* Zelfde margin als navbar */
    z-index: 999;
    min-width: 220px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.menu-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 5px;
    background: transparent;
    transition: background 0.2s ease;
}

.menu-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    width: 100%;
    height: 35px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
        
.progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.191);
    transition: width 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
}

.podium {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    margin-top: 0px;
    min-height: 300px;
}

.podium-plaats {
    flex: 1;
    width: 100%;
    text-align: center;
}

.podium-blok {
    background: rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    text-align: center;
}

.podium-blok:hover {
    transform: scale(1.05);
}

.podium-positie {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.podium-naam {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.podium-punten {
    font-size: 1.5em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.39);
}

.top7-container .parks-card {
    margin-bottom: 20px;
    border-radius: 30px;
}

.attractie-naam {
    font-size: x-large;
}

.attractie-stats {
    color: rgba(255, 255, 255, 0.39);
}

/* Nieuwsoverzicht */
/* Nieuwsoverzicht grid */
.nieuwsoverzicht {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

/* DESKTOP: Hoofdartikelen naast elkaar */
@media (min-width: 769px) {
    .nieuwsoverzicht {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nieuws-card {
        grid-column: 1 / -1;
    }
}

/* MOBIEL: Alles onder elkaar */
@media (max-width: 768px) {
    .nieuwsoverzicht {
        grid-template-columns: 1fr;
    }
}

/* Hoofdartikel (grote afbeelding) */
.nieuws-hoofdartikel {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.nieuws-hoofdartikel:hover {
    transform: translateY(-5px);
}

.nieuws-hoofdartikel-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.nieuws-hoofdartikel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #0b193c, transparent);
    padding: 80px 30px 30px;
    color: white;
}

.nieuws-hoofdartikel-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #0b193c, transparent);
    padding: 180px 30px 30px;
    color: white;
}

.nieuws-hoofdartikel-overlay h2 {
    margin: 0px;
    font-size: 2rem;
}

/* Medium artikelen (artikel 2 en 3) */
.nieuws-card-medium {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.nieuws-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.nieuws-card-content {
    padding: 20px;
}

.nieuws-card-content h3 {
    margin: 0 0 10px 0;
    color: white;
}

.nieuws-card-content h4 {
    margin: 0px;
    color: white;
}

/* Kleine nieuwskaarten */
.nieuws-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.nieuws-card-small-img {
    width: 80%;
    height: 100%;
    max-width: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.nieuws-datum {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Volledige artikel pagina */
.artikel-terug {
    margin-bottom: 20px;
}

.artikel-volledig {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.artikel-header-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.artikel-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #0b193c, transparent);
    padding: 40px 30px 30px;
    color: white;
}

.artikel-header-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #0b193c, transparent);
    padding: 140px 30px 30px;
    color: white;
}

.artikel-header-overlay h1 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
}

.artikel-type-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.artikel-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.artikel-content {
    padding: 40px 30px;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.artikel-extra-afbeeldingen {
    padding: 0 30px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.artikel-extra-afbeeldingen img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artikel-extra-afbeeldingen img:hover {
    transform: scale(1.05);
}

/* Lightbox voor afbeeldingen */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Backend beheer */
.beheer-acties {
    margin-bottom: 30px;
    text-align: right;
}

.btn-toevoegen {
    background: rgba(76, 175, 80, 0.8);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-toevoegen:hover {
    background: rgba(76, 175, 80, 1);
    transform: translateY(-2px);
}

/* Wrapper voor horizontale scroll */
.tabel-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.beheer-tabel {
    width: 100%;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    backdrop-filter: none;
    border: none;
    border-collapse: collapse;
}

/* Optioneel: styling voor scrollbar */
.tabel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.tabel-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tabel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.tabel-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.beheer-tabel thead {
    background: rgba(255, 255, 255, 0.1);
}

.beheer-tabel th {
    padding: 15px;
    text-align: left;
    color: white;
    font-weight: bold;
}

.beheer-tabel td {
    padding: 15px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.type-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.type-badge.nieuws {
    background: rgba(33, 150, 243, 0.3);
}

.type-badge.update {
    background: rgba(255, 152, 0, 0.3);
}

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

.btn-bewerken, .btn-verwijderen {
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-bewerken {
    background: rgba(33, 150, 243, 0.5);
    color: white;
}

.btn-bewerken:hover {
    background: rgba(33, 150, 243, 0.8);
}

.btn-verwijderen {
    background: rgba(244, 67, 54, 0.5);
    color: white;
}

.btn-verwijderen:hover {
    background: rgba(244, 67, 54, 0.8);
}

/* Formulier styling */
.nieuws-form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.nieuws-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="file"] {
    color: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
}

.image-preview,
.image-preview-grid {
    margin-top: 15px;
}

.image-preview img {
    max-width: 300px;
    border-radius: 10px;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.image-preview-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.huidige-afbeelding {
    margin-bottom: 15px;
}

.huidige-afbeelding img {
    max-width: 300px;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
}

.huidige-afbeelding p {
    color: rgba(255,255,255,0.8);
}

.huidige-extra-afbeeldingen {
    margin-bottom: 20px;
}

.extra-img-item {
    position: relative;
}

.extra-img-item label {
    display: block;
    text-align: center;
    margin-top: 5px;
    color: white;
    font-size: 0.9rem;
}

.form-acties {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-opslaan,
.btn-annuleren {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-opslaan {
    background: rgba(76, 175, 80, 0.8);
    color: white;
}

.btn-opslaan:hover {
    background: rgba(76, 175, 80, 1);
    transform: translateY(-2px);
}

.btn-annuleren {
    background: rgba(158, 158, 158, 0.5);
    color: white;
}

.btn-annuleren:hover {
    background: rgba(158, 158, 158, 0.8);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .nieuws-hoofdartikel {
        height: 300px;
    }
    
    .nieuws-hoofdartikel-overlay h2 {
        font-size: 1.5rem;
    }
    
    .artikel-header-img {
        height: 250px;
    }
    
    .artikel-header-overlay h1 {
        font-size: 1.8rem;
    }
    
    .artikel-content {
        padding: 20px;
        font-size: 1rem;
    }
    
    .beheer-tabel {
        font-size: 0.85rem;
    }
    
    .acties-cel {
        flex-direction: column;
    }
}

/* Terug knop styling */
.artikel-terug-knop {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
}

.artikel-terug-knop:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.artikel-terug-knop svg {
    width: 24px;
    height: 24px;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .artikel-terug-knop {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .artikel-terug-knop svg {
        width: 20px;
        height: 20px;
    }
}

/* Delen knop styling (zelfde als terug knop, maar links) */
.artikel-delen-knop {
    position: fixed;
    top: 20px;
    right: 80px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
}

.artikel-delen-knop:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.artikel-delen-knop svg {
    width: 24px;
    height: 24px;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .artikel-delen-knop {
        top: 15px;
        right: 70px;
        width: 45px;
        height: 45px;
    }
    
    .artikel-delen-knop svg {
        width: 20px;
        height: 20px;
    }
}

/* Deel menu styling */
.deel-menu {
    position: fixed;
    top: 185px;
    right: 170px;
    z-index: 9999;
    min-width: 220px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .deel-menu {
        top: 175px;
        right: 35px;
    }
}

.deel-menu.open {
    opacity: 1;
    z-index: 999;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.deel-optie {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 5px;
    background: transparent;
    transition: background 0.2s ease;
}

.deel-menu-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.deel-optie:last-child {
    margin-bottom: 0;
    text-decoration: none;
}

.deel-optie:hover {
    background: rgba(255, 255, 255, 0.2);
}

button.deel-optie {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 5px;
    background: transparent;
    transition: background 0.2s ease;
    border: none;
}

.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.video-preview-grid video {
    width: 100%;
    border-radius: 20px;
}

/* Video sectie styling */
.artikel-videos {
    margin-top: 30px;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.artikel-videos h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.artikel-videos video {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artikel-videos video:last-child {
    margin-bottom: 0;
}

.social-strip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    margin-top: 0px;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffffb3;
    margin-top: 0px;
}