/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem 1.5rem;
    transition: opacity 0.3s ease;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-text p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.cookie-banner-text a {
    color: #6f42c1;
}

.cookie-banner-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cookie-banner-settings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cookie-category {
    margin-bottom: 0.5rem;
}

.cookie-category label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

.cookie-category small {
    display: block;
    color: #6c757d;
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    #cookie-consent-banner {
        padding: 0.75rem 1rem;
    }
    .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner-actions .btn {
        width: 100%;
    }
}
