.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 25px;
  z-index: 10000;
  display: none; /* Nascosto di default, mostrato via JS */
  border-left: 5px solid #0056b3; /* Colore istituzionale */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-content h3 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.cookie-content a {
  color: #0056b3;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #003d7a;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #666;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.close-x {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}
