/* ── Solo word room game ───────────────────────────────────────────────── */
.solo-word-game {
    width: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(14px, 2.4vw, 22px);
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.10);
    background:
            radial-gradient(circle at 50% 0%, rgba(250,199,117,.12), transparent 42%),
            linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.10),
            0 18px 40px rgba(21, 12, 33, .22);
}

/* ── Timer ─────────────────────────────────────────────────────────────── */
.solo-timer-card {
    /*min-width: 112px;*/
    padding: 10px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(250,199,117,.15), rgba(255,255,255,.055));
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 8px 18px rgba(0,0,0,.14);
}

.solo-timer-label {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,.68);
}

#solo-timer {
    display: block;
    font-family: var(--font-pixel);
    font-size: 17px;
    line-height: 1;
    color: #fff4bf;
}

.solo-header-timer {
    /*min-width: 118px;*/
    /*padding: 6px 10px;*/
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(250,199,117,.12), rgba(255,255,255,.04));
}

.solo-header-timer .solo-timer-label {
    margin-bottom: 3px;
    font-size: 8px;
}

.solo-header-timer #solo-timer {
    font-size: 12px;
}

.solo-timer-card.is-running #solo-timer {
    color: #fff;
}

.solo-timer-card.is-danger {
    border-color: rgba(248,113,113,.42);
    background: linear-gradient(180deg, rgba(248,113,113,.18), rgba(255,255,255,.055));
}

/* ── Notice bar ────────────────────────────────────────────────────────── */
.notice-bar.solo-notice-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 14px;
    border: 1px solid rgba(250,199,117,.22);
    background: rgba(250,199,117,.075);
    border-radius: 20px;
    color: #fff2c7;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fac775;
    box-shadow: 0 0 18px rgba(250,199,117,.86);
    animation: soloPulse 1.4s infinite;
    flex-shrink: 0;
}

@keyframes soloPulse {
    0%, 100% { transform: scale(.82); opacity: .62; }
    50% { transform: scale(1.18); opacity: 1; }
}

/* ── Board ─────────────────────────────────────────────────────────────── */
.board-card.solo-board-card {
    position: relative;
    display: grid;
    place-items: center;
    width: max-content;
    max-width: 100%;
    margin: 4px auto 2px;
    padding: clamp(14px, 3vw, 26px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background:
            radial-gradient(circle at 50% 0%, rgba(250,199,117,.14), transparent 48%),
            linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    overflow: hidden;
}

.board-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,199,117,.12), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}

.word-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--word-len, 5), minmax(0, 52px));
    gap: clamp(6px, 1.2vw, 10px);
    justify-content: center;
    width: 100%;
}

.cell {
    width: 100%;
    height: 2.75rem;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.11);
    color: #fff;
    font-size: clamp(18px, 4.5vw, 28px);
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 22px rgba(0,0,0,.14);
    text-transform: uppercase;
}

.cell.filled,
.cell.active {
    border-color: rgba(250,199,117,.58);
    box-shadow: 0 0 0 4px rgba(250,199,117,.12), inset 0 1px 0 rgba(255,255,255,.08);
}

.cell.m2,
.cell.good {
    background: linear-gradient(135deg,#24ce7c,#108c57);
    border-color: rgba(97,255,174,.45);
}

.cell.m1,
.cell.miss {
    background: linear-gradient(135deg,#ffb83f,#bd7716);
    border-color: rgba(255,210,93,.45);
}

.cell.m0,
.cell.bad {
    background: linear-gradient(135deg,#657087,#424a5d);
    border-color: rgba(255,255,255,.08);
}

/* ── Keyboard ──────────────────────────────────────────────────────────── */
.keyboard-card.solo-keyboard-card,
#keyboard {
    display: grid;
    gap: 8px;
}

.keyboard-card.solo-keyboard-card {
    margin-top: auto;
}

.key-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.key-row button {
    flex: 1;
    min-width: 0;
    height: clamp(42px, 6.5vw, 52px);
    padding: 0 4px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    font-weight: 950;
    font-size: clamp(12px, 2vw, 15px);
    color: #f8fbff;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
    transition: transform .08s ease, border-color .12s ease, background .12s ease;
}

/*.key-row button:hover {*/
/*    border-color: rgba(250,199,117,.36);*/
/*    background: rgba(250,199,117,.12);*/
/*}*/

.key-row button:active {
    transform: translateY(1px);
    border-color: rgba(250,199,117,.30);
    background: rgba(250,199,117,.10);
}

.key-row button:focus,
.key-row button:focus-visible {
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .key-row button:hover {
        border-color: rgba(250,199,117,.36);
        background: rgba(250,199,117,.12);
    }
}

.key-row button:active {
    transform: translateY(1px);
}

.key-row button.wide {
    flex: 1.55;
    font-size: clamp(11px, 1.6vw, 13px);
}

.key-row button:focus,
.key-row button:focus-visible {
    outline: none;
    box-shadow: initial;
}

#keyboard.disabled {
    opacity: .55;
    pointer-events: none;
}

#keyboard .key.key-absent {
    background: linear-gradient(180deg, #94a3b8, #64748b);
    border-color: rgba(100,116,139,.72);
    color: #fff;
}

#keyboard .key.key-present {
    background: linear-gradient(180deg, #facc15, #eab308);
    border-color: rgba(202,138,4,.72);
    color: #422006;
}

#keyboard .key.key-correct {
    background: linear-gradient(180deg, #22c55e, #16a34a);
    border-color: rgba(22,163,74,.72);
    color: #fff;
}

/* ── Native mobile keyboard trigger ─────────────────────────────────────── */
.mobile-keyboard-open-wrap {
    display: none;
    margin-top: 8px;
    justify-content: center;
}

.mobile-keyboard-open-wrap.hidden {
    display: none !important;
}

.mobile-keyboard-open-btn {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 11px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
    color: #fff;
    background:
            radial-gradient(circle at 18% 18%, rgba(255,255,255,.20), transparent 28%),
            linear-gradient(135deg, rgba(22,27,47,.96), rgba(15,20,38,.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    transition: transform .16s ease, opacity .16s ease;
}

.mobile-keyboard-open-btn:active {
    transform: translateY(1px) scale(.99);
}

.mobile-keyboard-open-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.mobile-native-keyboard-input {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: .01;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: transparent;
    caret-color: transparent;
    pointer-events: none;
    z-index: -1;
}

@media (pointer: coarse), (max-width: 768px) {
    .mobile-keyboard-open-wrap {
        display: flex;
    }
}

/* ── Guess tooltip ─────────────────────────────────────────────────────── */
.guess-tooltip {
    position: fixed;
    left: 50%;
    top: 0;
    width: max-content;
    max-width: min(92vw, 360px);
    padding: 10px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    color: #f8fafc;
    background: linear-gradient(135deg, rgba(20, 14, 31, .96), rgba(83, 55, 18, .94));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 16px 40px rgba(15,23,42,.34), 0 0 0 1px rgba(250,199,117,.18) inset;
    transform: translate(-50%, -6px) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 2147483000;
}

.guess-tooltip.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 2px) scale(.97);
}

.guess-tooltip.not-found {
    background: linear-gradient(135deg, rgba(127,29,29,.97), rgba(190,18,60,.94));
}

.guess-tooltip-spinner {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.34);
    border-top-color: #fff;
    animation: guessTooltipSpin .72s linear infinite;
    flex: 0 0 auto;
}

.guess-tooltip.not-found .guess-tooltip-spinner {
    width: 16px;
    height: 16px;
    border: 0;
    display: inline-grid;
    place-items: center;
    animation: none;
}

.guess-tooltip.not-found .guess-tooltip-spinner::before {
    content: '×';
    font-size: 18px;
    line-height: 1;
}

@keyframes guessTooltipSpin {
    to { transform: rotate(360deg); }
}

/* ── Desktop solo room layout ──────────────────────────────────────────── */
@media (min-width: 681px) {
    .home-layout.solo-room-layout .right-panel.solo-room-panel {
        min-height: 550px;
        height: max(550px, calc(100dvh - 104px));
        max-height: none;
        display: flex;
        align-items: stretch;
        overflow: visible;
    }

    .home-layout.solo-room-layout .right-panel.solo-room-panel .solo-word-game {
        --solo-cell-size: 52px;
        width: 100%;
        height: 100%;
        min-height: 550px;
        max-height: none;
        display: grid;
        grid-template-rows: auto 1fr auto;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px 10px;
        overflow: visible;
        box-sizing: border-box;
    }

    .solo-room-panel .notice-bar.solo-notice-bar {
        grid-row: 1;
        min-height: 42px;
        padding: 6px 12px;
        font-size: 13px;
    }

    .solo-room-panel .board-card.solo-board-card {
        grid-row: 2;
        place-self: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 10px 12px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .solo-room-panel .word-board {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(var(--word-len, 5), minmax(0, 1fr));
        gap: clamp(5px, .75vw, 8px);
        justify-content: stretch;
        padding: 0;
        box-sizing: border-box;
    }

    .solo-room-panel .cell {
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 40px;
        aspect-ratio: 1.18 / 1;
        font-size: clamp(18px, calc((100vw - 520px) / var(--word-len, 5) * .42), 26px);
        box-sizing: border-box;
    }

    .solo-room-panel .keyboard-card.solo-keyboard-card {
        grid-row: 3;
        align-self: end;
        margin-top: 0;
        margin-bottom: 0;
        gap: 8px;
    }

    .solo-room-panel #keyboard {
        gap: 8px;
    }

    .solo-room-panel .key-row {
        gap: 6px;
    }

    .solo-room-panel .key-row button {
        height: 52px;
        min-height: 52px;
        border-radius: 12px;
        font-size: 15px;
    }
}

/* ── Mobile solo room layout ───────────────────────────────────────────── */
@media (max-width: 680px) {
    /*#coins-badge {*/
    /*    display: none;*/
    /*}*/
    #app {
        padding-top: 8px;
        padding-bottom: 0;
    }

    .home-layout.solo-room-layout .right-panel.solo-room-panel {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        max-height: none;
        margin-top: 8px;
        display: flex;
        overflow: visible;
    }

    .home-layout.solo-room-layout .right-panel.solo-room-panel .solo-word-game {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        max-height: none;
        padding: 7px;
        gap: 6px;
        border-radius: 18px;
        overflow: visible;
        box-sizing: border-box;
    }

    .solo-header-timer {
        min-width: max-content;
        /*padding: 5px 8px;*/
    }

    .solo-header-timer .solo-timer-label {
        font-size: 7px;
    }

    .solo-header-timer #solo-timer {
        font-size: 10px;
    }

    .solo-room-panel .notice-bar.solo-notice-bar {
        flex: 0 0 auto;
        min-height: 30px;
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 14px;
    }

    .solo-room-panel .board-card.solo-board-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 4px 5px;
        border-radius: 16px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .solo-room-panel .word-board {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(var(--word-len, 5), minmax(0, 1fr));
        gap: clamp(2px, .85vw, 4px);
        padding: 0;
        justify-content: stretch;
        box-sizing: border-box;
    }

    .solo-room-panel .cell {
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        border-radius: clamp(5px, 1.6vw, 7px);
        font-size: clamp(10px, calc((100vw - 42px) / var(--word-len, 5) * .44), 21px);
        box-sizing: border-box;
    }

    .solo-room-panel .keyboard-card.solo-keyboard-card,
    .solo-room-panel #keyboard {
        gap: 6px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .solo-room-panel .key-row {
        gap: 4px;
    }

    .solo-room-panel .key-row button {
        height: 42px;
        min-height: 42px;
        padding: 0 4px;
        border-radius: 9px;
        font-size: 12px;
    }

    .mobile-keyboard-open-wrap {
        margin-top: 4px;
    }

    .skill-unlock-btn {
        width: 100%;
    }
}

@media (max-width: 680px) and (max-height: 700px) {
    .home-layout.solo-room-layout .right-panel.solo-room-panel .solo-word-game {
        padding: 6px;
        gap: 5px;
    }

    .solo-room-panel .notice-bar.solo-notice-bar {
        min-height: 26px;
        padding: 3px 8px;
    }

    .solo-room-panel .board-card.solo-board-card {
        padding: 2px 4px;
    }

    .solo-room-panel .word-board,
    .solo-room-panel .keyboard-card.solo-keyboard-card,
    .solo-room-panel #keyboard {
        gap: 5px;
    }

    .solo-room-panel .cell {
        font-size: clamp(9px, calc((100vw - 38px) / var(--word-len, 5) * .42), 18px);
    }

    .solo-room-panel .key-row button {
        height: 39px;
        min-height: 39px;
    }
}

@media (max-width: 380px) and (max-height: 620px) {
    .home-layout.solo-room-layout .right-panel.solo-room-panel .solo-word-game {
        padding: 5px;
        gap: 4px;
    }

    .solo-room-panel .word-board {
        gap: 3px;
    }

    .solo-room-panel .cell {
        font-size: clamp(8px, calc((100vw - 34px) / var(--word-len, 5) * .40), 16px);
    }

    .solo-room-panel .key-row button {
        height: 36px;
        min-height: 36px;
        font-size: 11px;
    }
}

/* ── Solo time up popup ────────────────────────────────────────────────── */
.solo-timeup-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.solo-timeup-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.solo-timeup-backdrop {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 50% 35%, rgba(250,199,117,.18), transparent 34%),
            rgba(12, 8, 20, .76);
    backdrop-filter: blur(8px);
}

.solo-timeup-card {
    position: relative;
    width: min(440px, 100%);
    overflow: hidden;
    padding: 30px 24px 24px;
    border-radius: 28px;
    border: 1px solid rgba(250,199,117,.28);
    background:
            linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045)),
            radial-gradient(circle at 50% 0%, rgba(250,199,117,.20), transparent 48%),
            rgba(30, 20, 43, .96);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.14),
            0 24px 70px rgba(0,0,0,.45),
            0 0 0 7px rgba(250,199,117,.055);
    text-align: center;
    transform: translateY(12px) scale(.96);
    transition: transform .24s cubic-bezier(.2,.85,.25,1.2);
}

.solo-timeup-modal.show .solo-timeup-card {
    transform: translateY(0) scale(1);
}

.solo-timeup-glow {
    position: absolute;
    inset: -70px 25% auto;
    height: 150px;
    border-radius: 999px;
    background: rgba(250,199,117,.22);
    filter: blur(28px);
    pointer-events: none;
}

.solo-timeup-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    border-radius: 24px;
    border: 1px solid rgba(250,199,117,.34);
    background: linear-gradient(180deg, rgba(250,199,117,.22), rgba(255,255,255,.07));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 14px 28px rgba(0,0,0,.24);
    font-size: 42px;
    animation: solo-timeup-pop .85s ease both;
}

.solo-timeup-card h2 {
    position: relative;
    margin: 0 0 10px;
    font-family: var(--font-pixel);
    font-size: clamp(17px, 4vw, 23px);
    line-height: 1.35;
    color: #fff4bf;
    text-shadow: 0 2px 0 rgba(0,0,0,.32);
}

.solo-timeup-card p {
    position: relative;
    max-width: 320px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.solo-timeup-answer {
    position: relative;
    width: min(300px, 100%);
    margin: -8px auto 22px;
    padding: 12px 14px 13px;
    border-radius: 18px;
    border: 1px solid rgba(250,199,117,.28);
    background:
            linear-gradient(180deg, rgba(250,199,117,.13), rgba(255,255,255,.055)),
            rgba(12, 8, 20, .28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.20);
}

.solo-timeup-answer span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.56);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.solo-timeup-answer strong {
    display: block;
    color: #fff4bf;
    font-family: var(--font-pixel);
    font-size: clamp(17px, 4vw, 24px);
    line-height: 1.35;
    letter-spacing: .05em;
    text-shadow: 0 2px 0 rgba(0,0,0,.32);
    overflow-wrap: anywhere;
}

.solo-timeup-answer.is-empty strong {
    font-family: inherit;
    letter-spacing: 0;
    color: rgba(255,255,255,.62);
}


.solo-timeup-rewards {
    position: relative;
    display: none;
    width: min(340px, 100%);
    margin: -8px auto 22px;
}

.solo-timeup-actions {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.solo-timeup-new,
.solo-timeup-back {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
}

.solo-timeup-back {
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    color: rgba(255,255,255,.88);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 7px 0 rgba(0,0,0,.18);
}

.solo-timeup-back:hover {
    filter: brightness(1.08);
}

.solo-timeup-back:active {
    transform: translateY(2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 0 rgba(0,0,0,.18);
}

@keyframes solo-timeup-pop {
    0% { transform: scale(.74) rotate(-6deg); opacity: 0; }
    60% { transform: scale(1.08) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

@media (max-width: 560px) {
    .solo-timeup-card {
        padding: 26px 16px 18px;
        border-radius: 24px;
    }

    
.solo-timeup-actions {
        grid-template-columns: 1fr;
    }
}

.solo-timeup-rewards.show {
    display: block;
}

.solo-rewards-title {
    margin: 0 0 8px;
    color: #fff4bf;
    font-family: var(--font-pixel);
    font-size: 13px;
    letter-spacing: .06em;
    text-shadow: 0 2px 0 rgba(0,0,0,.28);
}

.solo-rewards-title.is-penalty {
    margin-top: 12px;
    color: #ffb5a8;
}

.solo-rewards-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.solo-reward-chip {
    min-width: 76px;
    padding: 9px 10px 10px;
    border-radius: 16px;
    border: 1px solid rgba(250,199,117,.30);
    background:
            linear-gradient(180deg, rgba(250,199,117,.16), rgba(255,255,255,.055)),
            rgba(12, 8, 20, .30);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 18px rgba(0,0,0,.18);
}

.solo-reward-chip.is-penalty {
    border-color: rgba(255,126,104,.30);
    background:
            linear-gradient(180deg, rgba(255,126,104,.15), rgba(255,255,255,.045)),
            rgba(12, 8, 20, .30);
}

.solo-reward-chip span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.72);
    font-size: 1rem;
    font-weight: 900;
}

.solo-reward-chip strong {
    display: block;
    color: #fff4bf;
    font-family: var(--font-pixel);
    font-size: 14px;
    line-height: 1.2;
}

.solo-reward-chip.is-penalty strong {
    color: #ffcabf;
}




.auto-submit-button{
    flex:0 0 auto;
    width:24px;
    height:24px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.28);
    border-radius:7px;
    padding:0;
    cursor:pointer;
    color:#fff;
    background:linear-gradient(180deg,#ffad42,#f47b35);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.3),0 4px 10px rgba(84,42,12,.22);
    font-size:1rem;
    /*line-height:1;*/
    transition:transform .14s ease,filter .14s ease,box-shadow .14s ease;
}
.auto-submit-btn svg {
    display: block;
    width: 18px;
    height: 18px;
}
.auto-submit-button:hover{
    transform:translateY(-1px);
    filter:brightness(1.05);
}
.auto-submit-button:active{transform:translateY(0)}
.auto-submit-button.is-off{
    background:linear-gradient(180deg,#8e96a3,#626b78);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 4px 10px rgba(24,31,40,.2);
}
.auto-submit-button:focus-visible{
    outline:3px solid rgba(255,173,66,.35);
    outline-offset:2px;
}