/* Contenedor del Toast */
#custom-toast-container {
    position: fixed;
    top: 20%;
    right: 2%;
    width: 500px;
    max-width: 700px;
    z-index: 9999;
}

/* Estilos base del Toast */
.custom-toast {
    display: flex;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
}

/* Icono del Toast */
.toast-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Botón para cerrar */
.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
}

/* Colores según el tipo de mensaje */
.custom-toast.success { background-color: #28a745; } /* Verde */
.custom-toast.error { background-color: #dc3545; }   /* Rojo */
.custom-toast.warning { background-color: #ffc107; } /* Amarillo */
