body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

.cookie-banner {
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
margin: 0;
font-size: 0.9rem;
}

.cookie-banner button {
background-color: #ff6347;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
transition: background-color 0.3s;
}

.cookie-banner button:hover {
background-color: #e5533d;
}

.hidden {
display: none;
}