/* cookie-modal.css */
#cookieModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
}

#cookieModal .modal-content {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  margin: 5% auto 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  text-align: center;
}

#cookieModal button {
  padding: 8px 16px;
  margin: 8px 4px 0 4px;
  border: none;
  border-radius: 4px;
  background: #3a7ae0;
  color: #fff;
  font-size: 0.9em;
  cursor: pointer;
}

#cookieModal button:hover {
  background: #2457a7;
}