/* Cookie Consent Banner Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #f8f9fa;
    color: #333;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-text {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-consent-buttons {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

#accept-cookies {
    background-color: #42b8d4;
    color: white;
}

#accept-cookies:hover {
    background-color: #3697b1;
}

#decline-cookies {
    background-color: #f1f1f1;
    color: #333;
}

#decline-cookies:hover {
    background-color: #e0e0e0;
}

.cookie-policy-link {
    color: #42b8d4;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-button {
        flex: 1;
        max-width: 150px;
    }
}
