/* Cookie Consent Styling */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

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

.btn-cookie {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

#accept-all:hover {
    background-color: #388E3C;
}

#accept-necessary {
    background-color: #2196F3;
    color: white;
}

#accept-necessary:hover {
    background-color: #1565C0;
}

#cookie-settings {
    background-color: #9E9E9E;
    color: white;
}

#cookie-settings:hover {
    background-color: #757575;
}

.cookie-settings-panel {
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.cookie-settings-panel h4 {
    margin-bottom: 1rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.cookie-option:last-child {
    border-bottom: none;
}

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

.cookie-option p {
    margin-top: 0.25rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    color: #666;
}

#save-preferences {
    background-color: #FF9800;
    color: white;
    display: block;
    margin-top: 1rem;
}

#save-preferences:hover {
    background-color: #F57C00;
}

.hidden {
    display: none !important;
}

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