/* cookie-consent.css */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(8px);
  width: min(920px, calc(100% - 32px));
  max-width: 720px;
  background: #f3f4f6; /* light gray background as requested */
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(2,6,23,0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 14px;
}
.cookie-consent.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-consent p {
  margin: 0;
  color: #0f172a;
  line-height: 1.35;
  flex: 1;
}
.cc-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cc-btn {
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
.cc-accept {
  background: #16a34a;
  color: #fff;
}
.cc-reject {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(2,6,23,0.06);
}
@media (max-width: 480px) {
  .cookie-consent { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cc-actions { align-self: stretch; justify-content: flex-end; width: 100%; }
}
