/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 54, 59, 0.95);
    color: white;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
}

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

.cookie-content h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cookie-content h2::after {
    background-color: var(--accent-color);
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

#accept-all {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

#accept-all:hover {
    background-color: #e6bc5c;
}

#accept-necessary {
    background-color: var(--mid-color);
    color: var(--dark-color);
}

#accept-necessary:hover {
    background-color: #d0d0d0;
}

#cookie-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

#cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings-panel {
    background-color: var(--dark-color);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-settings-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

#save-preferences {
    background-color: var(--accent-color);
    color: var(--dark-color);
    margin-top: 1rem;
}

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

.hidden {
    display: none;
}

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