/* Cookie Consent Banner Styles */
.cookie-consent {
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    display: none; /* Hidden by default */
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cookie-consent.active {
    opacity: 1;
    display: flex !important;
}

.cookie-consent-message {
    flex: 1;
    margin-right: 20px;
}

.cookie-consent-message p {
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept {
    background-color: #007bff;
    color: white;
    border: none;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-consent-message {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}