.n-sjh2-v2 {
    position: fixed;
    top: var(--n-sjh2-top, 50%);
    right: var(--n-sjh2-right, 16px);
    transform: translateY(-50%);
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    /* border: 1px solid rgba(128, 128, 128, .25);
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12); */
}
.n-sjh2-v2[hidden] { display: none !important; }
.n-sjh2-v2 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--n-sjh2-size, 40px);
    height: var(--n-sjh2-size, 30px);
    min-width: 40px;
    min-height: 30px;
    padding: 0;
    margin: 0;
    border: 1px solid currentColor;
    border-radius: 8px;
    background: #fff;
    color: var(--color_main, #245e82);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}
.n-sjh2-v2 button:disabled { opacity: .3; cursor: default; }
.n-sjh2-v2 button:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }
@media (hover: hover) {
    .n-sjh2-v2 button:hover:not(:disabled) { background: #edf3f6; }
}
.n-sjh2-v2[data-mobile="true"] {
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(var(--n-sjh2-bottom, 12px) + max(var(--n-sjh2-obstacle, 0px), env(safe-area-inset-bottom, 0px)));
    transform: translateX(-50%);
    flex-direction: row;
}
@media print { .n-sjh2-v2 { display: none !important; } }
