#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

#cookie-consent-banner button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 10px;
}

#cookie-consent-banner a {
    color: #25f4ee;
    text-decoration: none;
    margin-left: 10px;
}

#cookie-consent-banner a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    #cookie-consent-banner button,
    #cookie-consent-banner a {
        margin: 5px 0;
        width: 100%;
        max-width: 200px;
    }
}
