@charset "UTF-8";
/* CSS Document */

/* GDPR Banner Styles */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.98);
    color: white;
    padding: 1rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gdpr-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
}

.gdpr-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gdpr-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gdpr-accept {
    background-color: #0E0C71;
    color: white;
}

.gdpr-accept:hover {
    background-color: #0a0952;
}

.gdpr-decline {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: white;
}

.gdpr-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gdpr-settings {
    color: #A2ADEA;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.gdpr-settings:hover {
    color: white;
}