/* Consent Banner Styles */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none; /* Hidden by default */
    font-family: 'Montserrat', sans-serif;
    border-top: 3px solid var(--primary-color, #0056b3);
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.consent-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.consent-text strong {
    color: var(--primary-color, #0056b3);
}

.consent-buttons {
    display: flex;
    gap: 10px;
}

.btn-consent {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-accept {
    background-color: var(--primary-color, #0056b3);
    color: white;
}

.btn-accept:hover {
    background-color: #004494;
}

.btn-refuse {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-refuse:hover {
    background-color: #e2e6ea;
}

@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-consent {
        flex: 1;
    }
}
