.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 16px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}