/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner.active {
    display: flex;
}

.cookie-content {
    max-width: 800px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #4b6cb7;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.cookie-option {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.cookie-option input {
    margin-right: 0.5rem;
}

.cookie-option label {
    font-weight: bold;
    flex: 1;
    min-width: 150px;
    margin-bottom: 0.5rem;
}

.cookie-option p {
    width: 100%;
    margin: 0.5rem 0 0 1.7rem;
    font-size: 0.9rem;
    color: #666;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

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

#accept-all:hover {
    background-color: #3b5998;
    transform: translateY(-2px);
}

#save-preferences {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

#save-preferences:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

#accept-necessary {
    background-color: transparent;
    color: #666;
    text-decoration: underline;
}

#accept-necessary:hover {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}
