﻿/* Título a la izquierda */
.e-toast-container .e-toast .e-toast-title {
    text-align: left !important;
}

/* Texto normal y visible */
.e-toast-container .e-toast .e-toast-message {
    text-align: left !important;
    display: block !important; /* Esto es CLAVE */
    white-space: normal;
    word-break: break-word;
}

/* Temas personalizados */
.toast-success {
    background-color: #d4edda;
    color: #155724 !important;
}

.toast-error {
    background-color: #f8d7da;
    color: #721c24 !important;
}

.toast-warning {
    background-color: #fff3cd;
    color: #856404 !important;
}

.toast-info {
    background-color: #d1ecf1;
    color: #0c5460 !important;
}

/* Iconos básicos según tipo */
.e-success::before {
    content: "✔️ ";
    font-size: 18px;
}

.e-error::before {
    content: "❌ ";
    font-size: 18px;
}

.e-warning::before {
    content: "⚠️ ";
    font-size: 18px;
}

.e-info::before {
    content: "ℹ️ ";
    font-size: 18px;
}
