.mfix-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
    padding: 10px 16px;
    font-size: 13px;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1100;
    transition: 0.25s ease;
}

.mfix-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mfix-toast button {
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.9);
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    font-size: 12px;
    padding: 4px 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.mfix-toast button:hover {
    background: rgba(59, 130, 246, 0.18);
}
