/* Marquee animation - single source of truth */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.dedications-marquee {
  animation: marquee 25s linear infinite !important;
}

/* Hide static SEO content until React loads */
#root > header, #root > main, #root > footer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Force Heebo font on everything */
body, h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label, li {
  font-family: 'Heebo', sans-serif !important;
}

body {
  background-color: #f8fafc;
}

/* Ensure editor content aligns correctly */
.ql-align-right {
  text-align: right;
}
.ql-align-center {
  text-align: center;
}
.ql-align-left {
  text-align: left;
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
