#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  border-top: 1px solid #ccc;
  padding: 10px 50px 10px 10px; /* spazio extra a destra per il bottone */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
  z-index: 9999;
  box-sizing: border-box;
}
#cookie-banner a {
  color: #003366;
  text-decoration: underline;
}
#cookie-banner a:hover {
  text-decoration: none;
}
#cookie-banner button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  line-height: 1;
}
#cookie-banner button:hover {
  color: #000;
}