#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 12px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  z-index: 1050;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

#cookie-banner button {
  margin: 6px 4px 0;
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.accept { background: #4CAF50; color: white; }
.reject { background: #F44336; color: white; }
.settings { background: #FFC107; color: black; }

/* Miglioramento del layout su schermi piccoli */
@media (max-width: 576px) {
  #cookie-banner {
    font-size: 13px;
    padding: 10px 8px;
  }

  #cookie-banner button {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 6px auto 0;
  }
}
