/* styles.css */
html, body {
    margin: 0;
    padding: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1d3e67;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 2147483647; /* Un valore estremamente alto per garantire che sia sempre sopra */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-button {
    background-color: #1a6db3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 20px;
    cursor: pointer;
}

.cookie-button:hover {
    background-color: #2457aa;
}
