/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-banner h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.cookie-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

.cookie-option p {
    margin: 0.5rem 0 0 1.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.cookie-buttons .btn {
    margin: 0;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #dc143c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 900;
    display: none;
}

.cookie-settings-btn svg {
    width: 24px;
    height: 24px;
}

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