/* Cookie Banner - forced rules to avoid inline/style injection conflicts */
.cookie-banner {
  background: #222 !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 20000 !important; /* very high to avoid overlays */
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 18px !important;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.25) !important;
  transform: translateY(110%) !important;
  transition: transform 280ms ease !important;
  pointer-events: auto !important;
}

/* When visible */
.cookie-banner.show {
  transform: translateY(0) !important;
}

/* Hidden after animation */
.cookie-banner.hidden {
  display: none !important;
}

/* Text */
.cookie-banner p {
  margin: 0 !important;
  flex: 1 !important;
  color: #fff !important;
  padding-right: 15px !important;
}

/* Links */
.cookie-banner a {
  color: #66b3ff !important;
  text-decoration: underline !important;
}

/* Buttons */
.cookie-btn {
  border: none !important;
  padding: 8px 14px !important;
  margin-left: 8px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.cookie-btn.accept {
  background: #28a745 !important;
  color: #fff !important;
}

.cookie-btn.decline {
  background: #dc3545 !important;
  color: #fff !important;
}
