.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-card {
  max-width: 420px;
  border-radius: 12px;
  border: none;
}

/* Dark Theme Anpassung */
body.dark .cookie-card {
  background-color: #1e1e1e;
  color: #eaeaea;
}

/* Light Theme Anpassung */
body.light .cookie-card {
  background-color: #ffffff;
  color: #212529;
}