.toast-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    z-index: 999999;
    transition: opacity 0.3s ease;
}
.toast-message {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--black-color);
    padding: 15px 20px;
    border-radius: 10px;
    direction: rtl;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.toast-message label{
    font-size: 18px;
    font-family: var(--main-font);
    font-weight: normal;
}
.toast-message img{
    width: 20px;
    height: 20px;
}