@import "tailwindcss"; @import "@nuxt/ui"; /* Custom Scrollbar - Adaptable al tema */ ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); border-radius: 4px; } ::-webkit-scrollbar-thumb { background: rgba(0, 220, 130, 0.5); border-radius: 4px; transition: background 0.3s ease; } ::-webkit-scrollbar-thumb:hover { background: rgba(0, 220, 130, 0.7); } /* Scrollbar para modo oscuro */ .dark ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); } .dark ::-webkit-scrollbar-thumb { background: rgba(0, 220, 130, 0.6); } .dark ::-webkit-scrollbar-thumb:hover { background: rgba(0, 220, 130, 0.8); } /* Firefox scrollbar */ * { scrollbar-width: thin; scrollbar-color: rgba(0, 220, 130, 0.5) rgba(255, 255, 255, 0.1); } .dark * { scrollbar-color: rgba(0, 220, 130, 0.6) rgba(0, 0, 0, 0.3); }