/* FORZAR SCROLL EN CONTENEDORES DE ACTIVIDAD */
.comments-container, .history-container {
    display: block !important;
    max-height: 400px !important; /* Altura fija para forzar el scroll */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 10px !important;
}

/* Estilizar la barra de scroll para que sea visible pero elegante */
.comments-container::-webkit-scrollbar, 
.history-container::-webkit-scrollbar {
    width: 6px !important;
    display: block !important;
}

.comments-container::-webkit-scrollbar-track, 
.history-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03) !important;
    border-radius: 10px !important;
}

.comments-container::-webkit-scrollbar-thumb, 
.history-container::-webkit-scrollbar-thumb {
    background: #28e084 !important; /* Tu color corporativo */
    border-radius: 10px !important;
}

/* Evitar que el widget de Filament rompa el scroll */
.fi-section-content {
    overflow: visible !important;
}