body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Custom styling for the expanded config section */
.config-panel {
  display: none;
}
.config-panel.active {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

/* Glassmorphism utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hide scrollbar for clean horizontal scrolls if needed */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
