.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9fafb;
  color: #111827;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

@media (prefers-color-scheme: dark) {
  .cookie-banner {
    background: #1f2937;
    color: #f3f4f6;
    border-top-color: #374151;
  }
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-banner button {
  border: none;
  color: #fff;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.cookie-banner button#cookie-accept {
  background: #f97316;
}

.cookie-banner button#cookie-accept:hover {
  background: #ea580c;
}

.cookie-banner button#cookie-decline {
  background: #6b7280;
}

.cookie-banner button#cookie-decline:hover {
  background: #4b5563;
}
