/* Toasts (floating) */
.toasts-container {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 220px;
    max-width: 380px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.45);
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.toast.success {
    background: linear-gradient(90deg, #059669, #10b981);
}

.toast.error {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast.info {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}