/* Custom scrollbar and subtle glowing styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0b0f17;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}

.tab-button {
  transition: all 0.2s ease;
}

.glow-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.glow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.08);
}
