/* Estilos mínimos personalizados */
* { transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease; }

/* Scrollbar ligera */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #9ca3af; border-radius: 6px; }
::-webkit-scrollbar-track { background: #f3f4f6; }

html.dark ::-webkit-scrollbar-track { background: #1f2937; }
html.dark ::-webkit-scrollbar-thumb { background: #6b7280; }

/* Listas de notificaciones con altura fija y scroll interno */
.list-scroll-6 { max-height: 540px; overflow-y: auto; }

/* Opcional: reducir un poco el padding de cada ítem para uniformar altura */
.list-item-compact > li { padding-top: 0.75rem; padding-bottom: 0.75rem; }