/* For custom scrollbars to match the light theme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  /* slate-100 */
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  /* slate-300 */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
  /* slate-400 */
}

/* Custom Typography for Content Editor Preview */
.content-editor-preview .prose h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom-width: 2px;
  border-color: #4A90E2;
  /* brand-primary */
  color: #4A90E2;
  text-align: center;
}

.content-editor-preview .prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #4A90E2;
  border-left-width: 4px;
  border-color: #4A90E2;
  padding-left: 0.75rem;
}

.content-editor-preview .prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
  /* brand-dark */
  border-bottom-width: 1px;
  border-color: #e5e7eb;
  /* gray-200 */
  padding-bottom: 0.25rem;
}

.content-editor-preview .prose blockquote {
  border-left-width: 4px;
  border-color: #FF8C42;
  /* brand-secondary */
  padding-left: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #374151;
  /* gray-700 */
  background-color: #FFF4EC;
  /* orange-50 approx */
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
}

.content-editor-preview .prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Custom animations (from index.css) */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.animate-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}
