/* _content/Clock_Exerciser.Shared/Components/AnalogClock.razor.rz.scp.css */
.analog-clock-shell[b-anugwh3suh] {
    width: min(var(--clock-size), 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    justify-self: center;
    align-self: center;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: light-dark(#f5f5f5, #1f1f1f);
    color: light-dark(#1b1b1b, #f5f5f5);
    overflow: hidden;
}

.analog-clock-shell.compact[b-anugwh3suh] {
    background: light-dark(#e3f2fd, #1e3a5f);
    border: 2px solid light-dark(#2196f3, #1976d2);
}

.analog-clock[b-anugwh3suh] {
    width: 100%;
    height: 100%;
    display: block;
}

.clock-face[b-anugwh3suh] {
    fill: light-dark(#ffffff, #2b2b2b);
    stroke: light-dark(#e0e0e0, #3a3a3a);
    stroke-width: 2;
}

.clock-tick[b-anugwh3suh] {
    stroke: light-dark(#2b2b2b, #f0f0f0);
    stroke-linecap: round;
}

.clock-tick.major[b-anugwh3suh] {
    stroke-width: 2.2;
}

.clock-tick.minor[b-anugwh3suh] {
    stroke-width: 0.8;
    opacity: 0.65;
}

.clock-label[b-anugwh3suh] {
    fill: light-dark(#1b1b1b, #f5f5f5);
    font-family: "OpenSansRegular", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    user-select: none;
}

.clock-hand[b-anugwh3suh] {
    stroke-linecap: round;
}

.clock-hand.hour[b-anugwh3suh] {
    stroke: light-dark(#1b1b1b, #f5f5f5);
    stroke-width: 5;
}

.clock-hand.minute[b-anugwh3suh] {
    stroke: light-dark(#333333, #e0e0e0);
    stroke-width: 4;
}

.clock-hand.second[b-anugwh3suh] {
    stroke: #d84315;
    stroke-width: 1.4;
}

.clock-knob[b-anugwh3suh] {
    fill: light-dark(#1b1b1b, #f5f5f5);
}

.clock-second-knob[b-anugwh3suh] {
    fill: #d84315;
}
/* _content/Clock_Exerciser.Shared/Components/AnswerInput.razor.rz.scp.css */
.answer-input[b-ilaj3iva1e] {
    min-height: 44px;
    border: 1px solid light-dark(#c7c7c7, #4a4a4a);
    border-radius: 8px;
    padding: 0 12px;
    color: light-dark(#1b1b1b, #f5f5f5);
    background: light-dark(#ffffff, #222222);
    font: inherit;
}
/* _content/Clock_Exerciser.Shared/Components/ClockSliders.razor.rz.scp.css */
.slider-panel[b-phh6id9x2i] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-panel label[b-phh6id9x2i] {
    font-weight: 700;
}

.slider-panel input[type="range"][b-phh6id9x2i] {
    width: 100%;
    accent-color: #2196f3;
}
/* _content/Clock_Exerciser.Shared/Components/LanguageSelector.razor.rz.scp.css */
.language-panel[b-0swl97318h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.language-panel.compact[b-0swl97318h] {
    align-items: flex-end;
}

.language-panel label[b-0swl97318h] {
    font-weight: 700;
}

.language-panel select[b-0swl97318h] {
    width: 200px;
    min-height: 40px;
    border: 1px solid light-dark(#c7c7c7, #4a4a4a);
    border-radius: 8px;
    padding: 0 12px;
    color: light-dark(#1b1b1b, #f5f5f5);
    background: light-dark(#ffffff, #222222);
    font: inherit;
}

.language-panel.compact select[b-0swl97318h] {
    width: 160px;
    min-height: 36px;
    padding: 0 10px;
}
/* _content/Clock_Exerciser.Shared/Components/ModeButton.razor.rz.scp.css */
.mode-button[b-npdj1vgqkq] {
    min-height: 60px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    font: inherit;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgb(0 0 0 / 18%);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.mode-button:hover[b-npdj1vgqkq] {
    filter: brightness(1.05);
    box-shadow: 0 4px 10px rgb(0 0 0 / 22%);
}

.mode-button:active[b-npdj1vgqkq] {
    transform: scale(0.98);
}

.mode-button.clock-to-time[b-npdj1vgqkq] {
    background: light-dark(#2196f3, #1976d2);
}

.mode-button.time-to-clock[b-npdj1vgqkq] {
    background: light-dark(#4caf50, #388e3c);
}

.mode-button.random[b-npdj1vgqkq] {
    background: light-dark(#ff9800, #f57c00);
}
/* _content/Clock_Exerciser.Shared/Components/PromptPanel.razor.rz.scp.css */
.prompt-panel[b-x44ko2pgff] {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
}

.prompt-label[b-x44ko2pgff] {
    min-width: max-content;
}

.prompt-values[b-x44ko2pgff] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
    text-align: end;
}

.prompt-values strong[b-x44ko2pgff] {
    font-size: 1.08em;
}
/* _content/Clock_Exerciser.Shared/Components/ResultMessage.razor.rz.scp.css */
.result-message[b-2ifpu77dfx] {
    text-align: center;
    font-weight: 700;
}

.result-message.success[b-2ifpu77dfx] {
    color: #2e7d32;
}

.result-message.error[b-2ifpu77dfx] {
    color: #c62828;
}
/* _content/Clock_Exerciser.Shared/Components/ScoreDisplay.razor.rz.scp.css */
.score-row[b-rik3d5c40l] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.score-row span[b-rik3d5c40l] {
    color: #2e7d32;
    font-size: 20px;
    font-weight: 700;
}
/* _content/Clock_Exerciser.Shared/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-43e6qe9q22] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-43e6qe9q22] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Clock_Exerciser.Shared/Pages/Game.razor.rz.scp.css */
.game-page[b-nmg91ef1to] {
    min-height: 100dvh;
    overflow-y: auto;
    color: light-dark(#1b1b1b, #f5f5f5);
    background: light-dark(#ffffff, #121212);
}

.game-stack[b-nmg91ef1to] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    box-sizing: border-box;
}

.top-row[b-nmg91ef1to] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 1px;
}

.menu-link[b-nmg91ef1to] {
    min-height: 36px;
    border: 0;
    padding: 0;
    color: #2196f3;
    background: transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.instruction[b-nmg91ef1to] {
    margin: 0;
    line-height: 1.32;
}

.clock-border[b-nmg91ef1to] {
    display: grid;
    place-items: center;
    align-self: center;
    width: min(320px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    margin-inline: auto;
    border-radius: 50%;
    padding: 0;
    background: light-dark(#f5f5f5, #1f1f1f);
}

.primary-action[b-nmg91ef1to] {
    min-height: 44px;
    width: 100%;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #2196f3;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.primary-action:disabled[b-nmg91ef1to] {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 380px) {
    .game-stack[b-nmg91ef1to] {
        gap: 14px;
        padding: 20px 20px 16px;
    }

    .top-row[b-nmg91ef1to] {
        margin-bottom: -2px;
    }

    .instruction[b-nmg91ef1to] {
        margin-bottom: -4px;
        font-size: 14px;
        margin: 0;
        line-height: 1.32;
        max-width: 100%;
        min-width: 0;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .clock-border[b-nmg91ef1to] {
        width: min(280px, 100%);
    }
}
/* _content/Clock_Exerciser.Shared/Pages/Home.razor.rz.scp.css */
.menu-page[b-qptf7i0qd3] {
    min-height: 100dvh;
    overflow-y: auto;
    color: light-dark(#1b1b1b, #f5f5f5);
    background: light-dark(#ffffff, #121212);
}

.menu-stack[b-qptf7i0qd3] {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 0 24px;
    max-width: 560px;
    margin: 0 auto;
}

.menu-header[b-qptf7i0qd3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.menu-header h1[b-qptf7i0qd3] {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

.menu-header p[b-qptf7i0qd3] {
    margin: 0;
    font-size: 18px;
    opacity: 0.7;
}

.mode-buttons[b-qptf7i0qd3] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.device-metrics-overlay[b-qptf7i0qd3] {
    position: fixed;
    inset-inline: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 20;
    padding: 8px 10px;
    border-radius: 10px;
    color: #ffffff;
    background: rgb(0 0 0 / 0.72);
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
    pointer-events: none;
    backdrop-filter: blur(8px);
}
