/* toasts */
/* Estilos generales para las toasts (modo claro) */
.toast {
    background-color: #fff !important;
    color: #333 !important;
}
.toast-title,
.toast-header {
    color: #333 !important;
}

/* Bordes según el tipo */
.toast-success {
    border-left: 5px solid #8f5ce3 !important;
}
.toast-error {
    border-left: 5px solid #dc3545 !important;
}
.toast-info {
    border-left: 5px solid #17a2b8 !important;
}
.toast-warning {
    border-left: 5px solid #ffc107 !important;
}

/* Modo oscuro */
.dark-mode .toast {
    background-color: #333 !important;
    color: #fff !important;
}
.dark-mode .toast-title,
.dark-mode .toast-header {
    color: #fff !important;
}
