/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1f;
    border-top: 2px solid #0066cc;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 102, 204, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consent-banner.hidden {
    display: none;
}

.consent-text {
    flex: 1;
    color: #ffffff;
}

.consent-text p {
    margin: 0;
}

.consent-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.consent-btn-accept:hover {
    background-color: #0052a3;
}

.consent-btn-reject {
    background-color: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.consent-btn-reject:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

@media (max-width: 768px) {
    .consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .consent-buttons {
        width: 100%;
    }
    .consent-btn {
        flex: 1;
    }
}
