/* Стили всплывающего окна */

.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
}

.toast.success {
    background-color: #3399cc;
}

.toast.fail {
    background-color: #d83c31;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}