/* eeastyle.css */
#cookie-consent-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#cookie-consent-modal {
  background: #fff;
  padding: 2em;
  max-width: 400px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
}
#cookie-consent-modal p {
  margin-bottom: 1.5em;
  font-size: 0.95rem;
  color: #333;
}
#cookie-consent-modal .buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
}
#cookie-consent-modal button {
  padding: 0.5em 1.2em;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}
#cookie-consent-modal button.decline {
  background: #dc3545;
  color: #fff;
}
#cookie-consent-modal button#cc-accept {
  background: #28a745;
  color: #fff;
}
