/* cookie.css – stile popup cookie (versione sinistra) */

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background-color: #111;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 24px;
  font-family: "Inter", Arial, sans-serif;
  z-index: 9999;
  line-height: 1.5;
}

#cookie-banner h3 {
  font-size: 1.2rem;
  line-height:1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #3ba4ff;
}

#cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

#cookie-banner a {
  color: #3ba4ff;
  text-decoration: none;
}

#cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#acceptCookies {
  background-color: #3ba4ff;
  border: none;
  color: #fff;
}

#acceptCookies:hover {
  background-color: #2893f3;
}

#rejectCookies {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

#rejectCookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Bottone flottante per riaprire il popup */
#cookie-floating-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #111;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
}

#cookie-floating-btn:hover {
  background-color: #222;
}

#cookie-floating-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
