/* Containerul mesajului animat */
.custom-animated-message {
    position: relative;
    height: 1.5em; /* Poți ajusta înălțimea dacă e necesar */
    overflow: hidden;
    font-size: 12px;
    color: #22bc7b;
    padding-bottom : 5px!important;
    margin-bottom: 5px;
    margin-top : -7px!important;

}

/* Stilizarea fiecărui mesaj */
.custom-animated-message .msg {
    position: absolute;
    left: 0;
    right: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: flex;
    align-items: center;
}

/* Regula pentru SVG-ul personalizat */
.custom-animated-message svg {
    margin-right: 5px;
}

/* Mesajul vizibil */
.custom-animated-message .active {
    transform: translateY(0);
    opacity: 1;
}

/* Mesajul inactiv, poziționat deasupra */
.custom-animated-message .inactive {
    transform: translateY(-100%);
    opacity: 0;
}

/* Clasa aplicată în timpul tranziției când mesajul iese */
.custom-animated-message .exit {
    transform: translateY(100%);
    opacity: 0;
}

