/* =========================================
   Toast / Alert Notifications (уведомления)
   ========================================= */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    padding: 15px 25px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 280px;
    pointer-events: auto;
    line-height: 1.4;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success { background: #2e7d32; } /* Зелёный */
.toast.error { background: #d32f2f; }   /* Красный */
.toast.warning { background: #f57c00; } /* Оранжевый */