body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #FAF9F6;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 99px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #D1D5DB;
}

.active-tab {
  background-color: #111827 !important;
  color: #FFFFFF !important;
}

/* Animations helper classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}

.animate-slideDown {
  animation: slideDown 0.3s ease-out forwards;
}

.pulse-sparkle {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}

/* Elegant and extremely subtle configuration section scrollTo highlight ring */
.flash-highlight-ring {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(197, 168, 128, 0.22);
  background-color: rgba(197, 168, 128, 0.03) !important;
}

