/* Shared cookie consent banner, injected by js/cookie-consent.js on every page. */

.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: #16233d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-consent-text {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 640px;
  margin: 0;
}

.cookie-consent-text a {
  color: #9fd0ff;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-consent-btn {
  border: none;
  border-radius: 999px;
  padding: 0.55em 1.3em;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.cookie-consent-btn--accept {
  background: #0e6dd1;
  color: #ffffff;
}

.cookie-consent-btn--accept:hover {
  background: #0b5aad;
}

.cookie-consent-btn--reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-consent-btn--reject:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    justify-content: flex-start;
    padding: 14px 16px 16px 16px;
  }
}
