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

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    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: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 20px;
    cursor: pointer;
}

.cookie-button:hover {
    background-color: #45a049;
}
