#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 18px;
  background: #1f2937;
  color: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
#cookie-banner span {
  flex: 1;
  min-width: 240px;
}
#cookie-banner a {
  color: #93c5fd;
  text-decoration: underline;
}
#cookie-banner-ok {
  flex-shrink: 0;
  padding: 8px 28px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
#cookie-banner-ok:hover {
  background: #2563eb;
}
