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

.cookie-banner {
    position: fixed;
    bottom: 0; /* Cambiato da "top" a "bottom" */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    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); /* Ombra verso l'alto */
}

.cookie-button {
    background: -webkit-gradient(linear, left top, right bottom, from(#ff3e00), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #ff3e00, #ffbe30);
    background: -o-linear-gradient(top left, #ff3e00, #ffbe30);
    background: linear-gradient(to bottom right, #ff3e00, #ffbe30);
  color: #ffffff !important;
  -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 5px 15px;
    margin-left: 20px;
    cursor: pointer;
	margin-bottom: 5px;
}

.cookie-button:hover {
    background: -webkit-gradient(linear, left top, right bottom, from(#ffbe30), to(#ff3e00));
    background: -webkit-linear-gradient(top left, #ffbe30, #ff3e00);
    background: -o-linear-gradient(top left, #ffbe30, #ff3e00);
    background: linear-gradient(to bottom right, #ffbe30, #ff3e00);
}

