* {
    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;
}

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

.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-bottom: 20px;
    }
}

/* Improved mobile header */
@media (max-width: 768px) {
    .header {
        margin-bottom: 20px;
        padding-top: max(20px, env(safe-area-inset-top));
        text-align: 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);
}