/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Neutral light gray */
    color: #333;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensure it stays on top */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Lato', sans-serif; /* Matching the site font if possible */
    border-top: 1px solid #e1e1e1;
    transform: translateY(100%); /* Start hidden */
    transition: transform 0.3s ease-in-out;
}

#cookie-banner.visible {
    transform: translateY(0);
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}

#cookie-banner button {
    background-color: #333; /* Neutral dark */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
    white-space: nowrap;
}

#cookie-banner button:hover {
    background-color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    #cookie-banner button {
        width: 100%;
        max-width: 300px;
    }
}
