/* Стили для всплывающего сообщения */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f44336;
    color: white;
    padding: 16px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s, transform 0.5s ease-out;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}
