/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-consent-banner h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-consent-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 0.5rem;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#accept-necessary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

#accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#accept-selected {
    background-color: #147EFB;
    color: white;
}

#accept-selected:hover {
    background-color: #0D62C9;
}

#accept-all {
    background-color: #4CAF50;
    color: white;
}

#accept-all:hover {
    background-color: #3d8b40;
}

.cookie-info {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-info a {
    color: #147EFB;
    text-decoration: underline;
}

.cookie-info a:hover {
    color: #0D62C9;
}

/* Media Queries */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}