/* cookie-consent.css – neutraler, unaufdringlicher Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f8f8;
  color: #333;
  padding: 1rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  z-index: 9999;
}

.cookie-banner a {
  color: #0066cc;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  border: none;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

#cookie-accept {
  background: #0066cc;
  color: white;
}

#cookie-decline {
  background: #ddd;
  color: #333;
}
