#cookie-banner {
background-color: #F0D8DB;
color: #862041;
padding: 20px 30px;
position: fixed;
bottom: 20px;
right: 20px;
width: 350px;
max-width: 90%;
z-index: 9999;
Border: 1px solid #862041;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: flex-start;
font-family: sans-serif;
}
#cookie-banner p {
margin: 0 0 15px 0;
font-size: 14px;
}
#accetta-cookie {
background-color: #862041;
color: #F0D8DB;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 5px;
transition: background-color 0.3s ease;
align-self: flex-end;
}
#accetta-cookie:hover {
background-color: #9B3359;
}