/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-consent-banner.visible {
    display: block;
}

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

.cookie-consent-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2b5797;
}

.cookie-consent-content p {
    margin-bottom: 20px;
}

.cookie-options {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cookie-option {
    flex: 0 0 calc(33.333% - 20px);
    margin: 10px;
    position: relative;
}

.cookie-option input {
    margin-right: 10px;
}

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

.cookie-option .tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    width: 250px;
    font-size: 0.8rem;
    color: #6c757d;
    display: none;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-option:hover .tooltip {
    display: block;
}

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

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

.cookie-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid #2b5797;
    color: #2b5797;
}

.cookie-buttons .btn-outline:hover {
    background-color: #2b5797;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-option {
        flex: 0 0 calc(50% - 20px);
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .cookie-option {
        flex: 0 0 100%;
    }
    
    .cookie-option .tooltip {
        width: 200px;
    }
}
