#locationOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}
#locationCookieModal {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    z-index: 9999;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: none;
    font-family: sans-serif;
}

#locationCookieModal h4 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #222;
}

#locationCookieModal p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

#locationCookieModal label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

#locationConsentToggle {
    transform: scale(1.3);
}

#locationCookieModal button {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

#rejectLocation {
    background: #6c757d;
    color: #fff;
    margin-right: 10px;
}

#confirmLocation {
    background: #007bff;
    color: #fff;
}
