/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons .btn {
    margin: 5px;
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* Cookie Settings Modal */
.cookie-settings {
    margin: 20px 0;
}

.cookie-option {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f5f5f5;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-option label {
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 8px;
    margin-left: 25px;
    font-size: 0.9rem;
    color: #666;
}

#save-cookie-settings {
    width: 100%;
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
}
