/* Simple cookie consent banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1055;
  background: #1f2937; /* dark slate */
  color: #fff;
  padding: 16px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
  display: none;
}

.cookie-consent-banner .content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-consent-banner .message {
  flex: 1 1 480px;
  font-size: 0.95rem;
}

.cookie-consent-banner .actions {
  display: flex;
  gap: 8px;
}

.cookie-consent-banner .actions .btn {
  border-radius: 6px;
}

.cookie-consent-preferences {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: #111827;
  border-radius: 8px;
  display: none;
}

.cookie-consent-preferences label {
  margin-right: 16px;
}

.cookie-consent-link {
  color: #93c5fd;
}

