#HmToastContainer {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 99999;
    pointer-events: none;
}

.hm-toast {
    pointer-events: auto;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s;
    max-width: 420px;
    word-wrap: break-word;
}

.hm-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.hm-toast--ok { background: #28a745; }
.hm-toast--error { background: #dc3545; }

