/* events/static/events/css/cookie_consent.css */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Black background */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #333; /* Dark grey border */
}

.cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Match container width */
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    margin: 0;
    color: #fff; /* White text */
    font-size: 0.9rem;
    flex-grow: 1;
}

.cookie-consent-link {
    color: #fff; /* White link */
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-accept {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-accept:hover {
    background-color: #fff;
    color: #000;
}

.btn-refuse {
    background-color: #333;
    color: #ccc;
    border: 2px solid #333;
}

.btn-refuse:hover {
    background-color: #555;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}