/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.consent-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.consent-content p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
}

.consent-button {
    padding: 0.5rem 1rem;
    background-color: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.consent-button:hover {
    text-decoration: underline;
}

.consent-button#accept-cookies {
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
}

.consent-button#accept-cookies:hover {
    background-color: #fff;
    color: #000;
}

.consent-button#decline-cookies {
    border: 2px solid #fff;
    background-color: #000;
    color: #fff;
}

.consent-button#decline-cookies:hover {
    background-color: #000;
    color: #fff;
}

.consent-banner.hidden {
    display: none;
}