/* Cookie consent banner – same for all users and crawlers (no cloaking). See docs/WEBSITE_COOKIE_CONSENT.md */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 14px 20px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

#cookie-consent-banner .cookie-consent-text {
  flex: 1 1 280px;
}

#cookie-consent-banner .cookie-consent-text a {
  color: #7fdbff;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#cookie-consent-banner .cookie-consent-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

#cookie-consent-banner .cookie-consent-btn-accept {
  background: #27ae60;
  color: #fff;
}

#cookie-consent-banner .cookie-consent-btn-accept:hover {
  background: #2ecc71;
}

#cookie-consent-banner .cookie-consent-btn-reject {
  background: transparent;
  color: #bdc3c7;
  border: 1px solid #7f8c8d;
}

#cookie-consent-banner .cookie-consent-btn-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ecf0f1;
}
