/* Контейнер для всех тостов */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Сам тост */
.toast {
    position: relative;
    min-width: 260px;
    max-width: 320px;
    background: #ffffff;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-left: 5px solid #e15501;
}

/* Заголовок */
.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

/* Текст */
.toast-message {
    flex: 1;
    margin-right: 25px; /* чтобы текст не налезал на крестик */
}

/* Кнопка закрытия */
.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    color: #777;
    padding: 0;
}

.toast-close:hover {
    color: #000;
}

/* Анимации */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast.hide {
    opacity: 0;
    transform: translateY(20px);
}