#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0f172a;
  color: #f8fafc;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.35);
  z-index: 999999;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid #334155;
}
#cookie-consent-banner .cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
#cookie-consent-banner p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.5;
  color: #cbd5e1;
  flex: 1 1 500px;
}
#cookie-consent-banner a {
  color: #38bdf8;
  text-decoration: underline;
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background-color: #0284c7;
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cookie-btn-accept:hover {
  background-color: #0369a1;
}
.cookie-btn-reject {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-btn-reject:hover {
  background-color: #1e293b;
  color: #f8fafc;
  border-color: #64748b;
}
