/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    padding: 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

.cookie-settings-panel {
    display: none;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
}

.cookie-settings-panel.show {
    display: block;
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-option h4 {
    margin-bottom: 0.5rem;
}

.cookie-option p {
    color: var(--text-light);
    margin-bottom: 0;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-option input[type="checkbox"] {
        margin-top: 1rem;
    }
}
