#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #1f2328;
  color: #f2f2f2;
  font-size: 0.9rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

#cookie-consent-banner .cookie-consent-text {
  flex: 1 1 320px;
  line-height: 1.4;
}

#cookie-consent-banner .cookie-consent-text a {
  color: #8ecbff;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

#cookie-consent-banner button {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

#cookie-consent-banner #cookie-consent-accept {
  background: #4caf50;
  color: #fff;
}

#cookie-consent-banner #cookie-consent-reject {
  background: transparent;
  color: #f2f2f2;
  border-color: #6b7280;
}
