#cookie-consent-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

#cookie-consent-banner {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  z-index: 9999;
  max-width: 700px;
  width: 90%;
  border-radius: 12px;
  text-align: left;
  font-family: sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}

#cookie-consent-banner a {
  color: #0056b3;
  text-decoration: underline;
}

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

.btn-primary, .btn-accept-all {
  padding: 0.5rem 1rem;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary {
  background-color: #0073aa;
  margin-right: 1rem;
}

.btn-accept-all {
  background-color: #00aa55;
}

.legal-links {
  font-size: 0.85em;
  text-align: center;
}
