#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#cookie-banner {
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  font-size: 15px;
  animation: fadeIn 0.3s ease;
}

#cookie-banner h2 {
  margin-top: 0;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px;
  border: none;
  background-color: #0077cc;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
}

.cookie-buttons button:hover {
  background-color: #005fa3;
}

#cookie-overlay.hide {
  display: none;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}