.toast {
    width: max-content;
    max-width: 800px;
    position: fixed;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 18px;
    background: #666;
    color: white;
    border-radius: 6px;
    opacity: 0;
    z-index: 9999;
    overflow-wrap: anywhere;
}

.toast.show {
    opacity: 1;
}

