#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    background-color: #333;
    color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookieConsent a {
    color: #4da6ff;
    text-decoration: none;
}

#cookieConsent a:hover {
    text-decoration: underline;
}

#cookieConsent button {
    white-space: nowrap;
}

#cookieConsent .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#cookieConsent .container > * {
    margin: 0.25rem;
}

@media (max-width: 576px) {
    #cookieConsent .container {
        flex-direction: column;
        text-align: center;
    }
    
    #cookieConsent .container > * {
        margin: 0.25rem 0;
    }
}