/* toast.css */
#native-toast {
    position: fixed;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 999999;
    max-width: 80%;
    text-align: center;
    display: none;
    pointer-events: none;
    white-space: pre-line;
}