#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  font-family: "Inter", sans-serif;
  text-align: center;
  z-index: 9999;
  border: 1px solid rgba(156, 30, 30, 0.35);
}

#cookie-banner p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
}

#cookie-banner .cookie-link {
  color: #9c1e1ed9;
  text-decoration: underline;
  text-decoration-color: #9c1e1ed9;
}

#cookie-banner .cookie-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Primärer Button */
.cookie-btn.accept {
  background-color: #9c1e1ed9;
  border: none;
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #7f1d1d;
  transform: translateY(-1px);
}

/* Sekundäre Buttons */
.cookie-btn.decline,
.cookie-btn.settings {
  background: transparent;
  border: 1px solid #9c1e1ed9;
  color: #9c1e1ed9;
}

.cookie-btn.decline:hover,
.cookie-btn.settings:hover {
  background-color: #9c1e1ed9;
  color: #fff;
}