/* Estilos personalizados adicionales si son necesarios */
body {
  /* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap'); */
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-track {
  background: #2d3748;
}
::-webkit-scrollbar-thumb {
  background: #a0aec0;
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #4a5568;
}
::-webkit-scrollbar-thumb:hover {
  background: #718096;
}
.dark ::-webkit-scrollbar-thumb:hover {
  background: #718096;
}

.sidebar-text {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.md\:w-16 .sidebar-text {
  opacity: 0;
  visibility: hidden;
}

.fixed.inset-0.z-50 {
  z-index: 50;
}
