/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Roboto', sans-serif;
    display: none; /* Hidden by default, shown with JS */
}

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

.cookie-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    background-color: #3498db;
    color: white;
}

.cookie-btn:hover {
    background-color: #2980b9;
}

.cookie-btn.secondary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 800px;
    margin: 20px auto 0;
    background-color: white;
    color: #333;
    border-radius: 8px;
    padding: 20px;
    display: none; /* Hidden by default, shown with JS */
}

.cookie-settings-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

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

/* Responsive design for cookie consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content h2 {
        font-size: 1.3rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .cookie-settings-panel {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
