﻿/*Estilos para el toast*/
.toast-successful {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #CCFFCD;
    color: #464646;
    padding: 0.6rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.toast-progress-bar-successful {
    margin-top: 10px;
    width: 100%;
    height: 0.3rem;
    background-color: transparent;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.toast-progress-successful {
    width: 0;
    height: 100%;
    background-color: #4CAF50;
    animation: gradientFade 4.3s linear, fadeOutOpacity 4.3s linear;
    transition: width 4.3s linear; /* Duración del relleno de la barra */
}

.toast-error {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD3CC;
    color: #464646;
    padding: 0.6rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.toast-progress-bar-error {
    margin-top: 10px;
    width: 100%;
    height: 0.3rem;
    background-color: transparent;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.toast-progress-error {
    width: 0;
    height: 100%;
    background: #F1948A;
    background-size: 300%;
    animation: gradientFade 4.3s linear, fadeOutOpacity 4.3s linear;
    transition: width 4.3s linear; /* Controla la animación del ancho */
}

@keyframes gradientFade {
    from {
        background-position: 0%;
    }

    to {
        background-position: 100%;
    }
}
