/* GDPR Popup */
.gdpr-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    background: #2c213e; /* Dark background */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 14px;
    display: none;
    color: #fff; /* Light text color */
}

.gdpr-popup p {
    margin-bottom: 10px;
    color: #fff; /* Light text color */
}

.gdpr-popup button {
    background: #77e8d6; /* Light Teal */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 12px;
}

.gdpr-popup button.decline {
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
}
