/* _content/CalcEducationApp/Components/Components/AnalogClock.razor.rz.scp.css */
.analog-clock[b-94k7err8a3] {
    width: 160px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analog-clock .clock-face[b-94k7err8a3] {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffffff 60%, #f0f0f0 85%);
    border: 8px solid #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.clock-face .tick-layer[b-94k7err8a3],
.clock-face .numbers-layer[b-94k7err8a3] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tick-layer .tick-svg[b-94k7err8a3] {
    width: 100%;
    height: 100%;
}

.tick[b-94k7err8a3] {
    stroke-linecap: round;
}

.tick-minute[b-94k7err8a3] {
    stroke: #d3d3d3;
    stroke-width: 0.7;
}

.tick-five[b-94k7err8a3] {
    stroke: #9a9ab5;
    stroke-width: 1.3;
}

.tick-hour[b-94k7err8a3] {
    stroke: #2c2c2c;
    stroke-width: 2.2;
}

.clock-face .hour-number[b-94k7err8a3] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 1rem;
    color: #2c2c2c;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.analog-clock .hand[b-94k7err8a3] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 6px;
    transition: transform 0.15s ease-in-out;
    z-index: 3;
    background: #2c2c2c;
}

.analog-clock .hour-hand[b-94k7err8a3] {
    width: 8px;
    height: 38%;
}

.analog-clock .minute-hand[b-94k7err8a3] {
    width: 5px;
    height: 48%;
    background: #ff6f61;
}

.analog-clock .center-dot[b-94k7err8a3] {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2c2c2c;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}
/* _content/CalcEducationApp/Components/Components/ChoiceButton.razor.rz.scp.css */
.button-icon[b-tyys8ildys] {
    width: 3rem;
    height: 3rem;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .choice-button[b-tyys8ildys] {
        padding: 0;
    }
}
/* _content/CalcEducationApp/Components/Components/LoginPopup.razor.rz.scp.css */
.login-popup[b-eotrx6oe57] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-content[b-eotrx6oe57] {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90%;
    max-width: 350px;
}

.login-content input[b-eotrx6oe57] {
    padding: 0.5rem;
    font-size: 1rem;
}

@media (orientation: landscape) and (max-width: 1024px) {
    .login-content[b-eotrx6oe57] {
        max-width: 300px;
    }
}
/* _content/CalcEducationApp/Components/Components/NumberButton.razor.rz.scp.css */
.number-button[b-g0hy0koput] {
    font-size: 2rem;
    min-width: 4rem;
    min-height: 4rem;
}

@media (max-width: 767px) {
    .number-button[b-g0hy0koput] {
        min-height: 2rem;
        min-width: 2rem;
        font-size: 1rem;
    }
}
/* _content/CalcEducationApp/Components/Layout/Header.razor.rz.scp.css */
.header[b-zpsapuf9uj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    max-height: 5rem;
    position: relative;
}

.logo[b-zpsapuf9uj] {
    height: 8rem;
    margin-right: 1rem;
}

.header-buttons[b-zpsapuf9uj] {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.mobile-menu-btn[b-zpsapuf9uj] {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #004080;
}

.profile-container[b-zpsapuf9uj] {
    position: relative;
    display: inline-block;
}

.profile-btn[b-zpsapuf9uj] {
    background-color: #ff6b3d;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px 12px 4.5rem;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    position: relative;
}

.profile-btn:hover[b-zpsapuf9uj] {
    background-color: #e0542a;
}

.profile-btn img[b-zpsapuf9uj] {
    position: absolute;
    left: 0.5rem;
    top: 45%;
    transform: translateY(-50%);
    height: 4rem;
}

.profile-dropdown[b-zpsapuf9uj] {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    list-style: none;
    padding: 0.25rem 0;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 100%;
    font-family: 'Fredoka', sans-serif;
}

.profile-dropdown li a[b-zpsapuf9uj] {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    color: #004080;
    text-decoration: none;
}
.profile-dropdown li a:hover[b-zpsapuf9uj] {
    background-color: #f5f5f5;
}

    .header-buttons span[b-zpsapuf9uj] {
        display: flex;
        align-items: center;
    }

@media (max-width: 767px) {
    .mobile-menu-btn[b-zpsapuf9uj] {
        display: block;
    }
    .header-buttons[b-zpsapuf9uj] {
        display: none;
        position: absolute;
        top: 100%;
        right: 4%;
        background: #FFF7E6;
        flex-direction: column;
        padding: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        z-index: 1000;
    }
    .header-buttons.show[b-zpsapuf9uj] {
        display: flex;
    }
}

@media (orientation: portrait) and (max-width: 900px) {
    .logo[b-zpsapuf9uj] {
        height: 8rem;
    }
}
/* _content/CalcEducationApp/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ll4dv2yqoc] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-ll4dv2yqoc] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/CalcEducationApp/Components/Pages/Calculation.razor.rz.scp.css */
.operation-list[b-hwpe8q9pyn] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.operation-btn[b-hwpe8q9pyn] {
    font-size: 2rem;
    padding: 1rem 1.5rem;
}

.operation-btn.selected[b-hwpe8q9pyn] {
    border: 2px solid #007bff;
    background-color: #e7f1ff;
}
.range-list[b-hwpe8q9pyn] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.range-btn[b-hwpe8q9pyn] {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
}

.range-btn.selected[b-hwpe8q9pyn] {
    border: 2px solid #007bff;
    background-color: #e7f1ff;
}
.equation-display[b-hwpe8q9pyn] {
    font-size: 2rem;
    font-weight: bold;
}
.question-area[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.progress-container[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
.result-text[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    height: 40px;
    font-weight: bold;
}
.answers-grid[b-hwpe8q9pyn] {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.calc-title[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
}
.score[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
}
.answer-count[b-hwpe8q9pyn] {
    font-size: 1.3rem;
}
.choose-number[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
    font-size: 2rem;
}

.controls[b-hwpe8q9pyn] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-btn[b-hwpe8q9pyn] {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
}

.change-selection[b-hwpe8q9pyn] {
    display: grid;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-label[b-hwpe8q9pyn] {
    margin-right: 0.5rem;
    font-weight: bold;
}
/* _content/CalcEducationApp/Components/Pages/ClockReading.razor.rz.scp.css */
.clock-reading-page[b-qf45x0nhx5] {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.clock-reading-page h1[b-qf45x0nhx5] {
    margin-bottom: 0.75rem;
}

.granularity-controls[b-qf45x0nhx5] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.granularity-btn[b-qf45x0nhx5] {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: #f4f4ff;
    color: #3c3c66;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.granularity-btn:hover[b-qf45x0nhx5] {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(108, 99, 255, 0.18);
}

.granularity-btn.selected[b-qf45x0nhx5] {
    background: #6c63ff;
    color: #ffffff;
    border-color: #4f47d6;
    box-shadow: 0 12px 24px rgba(108, 99, 255, 0.25);
}

.time-prompt[b-qf45x0nhx5] {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.time-badge[b-qf45x0nhx5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    background-color: #6c63ff;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(108, 99, 255, 0.3);
}

.clock-grid[b-qf45x0nhx5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.clock-option[b-qf45x0nhx5] {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 100%);
    border: 3px solid transparent;
    border-radius: 1.25rem;
    padding: 1.2rem 0.75rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: inherit;
}

.clock-option:hover[b-qf45x0nhx5] {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(80, 80, 150, 0.18);
}

.clock-option.correct[b-qf45x0nhx5] {
    border-color: #0c9d58;
    box-shadow: 0 0 0 4px rgba(12, 157, 88, 0.2);
}

.clock-option.selected[b-qf45x0nhx5] {
    border-color: #6c63ff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.25);
}

.clock-option.selected.incorrect[b-qf45x0nhx5] {
    border-color: #d93025;
    box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.25);
}

.clock-option:disabled[b-qf45x0nhx5] {
    cursor: default;
}

.clock-label[b-qf45x0nhx5] {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.feedback[b-qf45x0nhx5] {
    min-height: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.controls[b-qf45x0nhx5] {
    display: flex;
    justify-content: center;
}

.controls .control-btn[b-qf45x0nhx5] {
    min-width: 180px;
}

@media (max-width: 640px) {
    .clock-reading-page[b-qf45x0nhx5] {
        padding: 1.5rem 1rem;
    }

    .clock-grid[b-qf45x0nhx5] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .granularity-controls[b-qf45x0nhx5] {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .granularity-btn[b-qf45x0nhx5] {
        padding: 0.45rem 1rem;
    }
}
/* _content/CalcEducationApp/Components/Pages/Home.razor.rz.scp.css */
.home-top[b-phacou1m7r] {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100vw;
}

.welcome-text-div[b-phacou1m7r] {
    -ms-align-content: center;
    -webkit-align-content: center;
    align-content: center;
    margin: 2.5rem;
}

.home-image[b-phacou1m7r] {
    width: 25rem;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    margin: 2.5rem;
}

.home-choices[b-phacou1m7r] {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 3rem;
    margin: 0 2.5rem 0 2.5rem;
    position: absolute;
    bottom: 2rem;
}

body[b-phacou1m7r] {
    background: url('images/BackgroundWithBear.png');
}

@media (orientation: portrait) {
    .home-choices[b-phacou1m7r] {
        grid-template-columns: auto auto auto;
        position: initial;
    }

    .home-top[b-phacou1m7r] {
        display: grid;
        grid-template-columns: 100%;
        width: 100vw;
        -ms-align-content: center;
        -webkit-align-content: center;
        align-content: center;
        text-align: center;
    }

}
@media (max-width: 767px) {
    .home-choices[b-phacou1m7r] {
        grid-template-columns: auto;
        gap: 1rem;
    }
}
/* _content/CalcEducationApp/Components/Pages/Register.razor.rz.scp.css */
.register-form[b-vinz2wf7b3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 2rem auto;
    padding: 1rem;
}

.register-form input[b-vinz2wf7b3] {
    padding: 0.5rem;
    font-size: 1rem;
}

.register-form button[b-vinz2wf7b3] {
    padding: 0.5rem;
    font-size: 1rem;
}

.register-message[b-vinz2wf7b3] {
    color: red;
}

@media (orientation: portrait) and (max-width: 900px) {
    .register-form[b-vinz2wf7b3] {
        max-width: 90%;
    }
}
/* _content/CalcEducationApp/Components/Pages/Settings.razor.rz.scp.css */
.slider-container[b-iyh5l3r0lz] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 300px;
}
/* _content/CalcEducationApp/Components/Pages/Splitting.razor.rz.scp.css */
.choice-list[b-zb89oss9cs] {
    display: flex;
    padding-bottom: 0.5rem;
    /* Optional: for better scroll visibility */
    /* Remove gap here, as it's set inline or can be moved here if preferred */
    max-width: 100%;
    gap: 2rem;
    -ms-flex-flow: wrap;
    -webkit-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.controls[b-zb89oss9cs] {
    margin: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    -webkit-justify-content: center;
    justify-content: center;
}

.control-btn[b-zb89oss9cs] {
    min-width: 3rem;
}

.question-area[b-zb89oss9cs] {
    display: grid;
    grid-template-rows: auto auto;
    justify-content: center;
    gap: 4rem;
}

.question-numbers[b-zb89oss9cs] {
    display: flex;
    justify-content: space-between;
    gap: 10rem;
}

.number-display[b-zb89oss9cs] {
    font-size: 2rem;
    padding: 10px;
    width: 58px;
    height: 68px;
    text-align: center;
    -ms-align-content: center;
    -webkit-align-content: center;
    align-content: center;
    background: #C4ECC4;
    background: linear-gradient(180deg, rgba(196, 236, 196, 1) 0%, rgba(254, 246, 190, 1) 100%);
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    font-weight: bold;
}

.number-top[b-zb89oss9cs] {
    width: auto;
    height: auto;
}

.progress-container[b-zb89oss9cs] {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 2rem 0;
    height: 20px;
}

.result-text[b-zb89oss9cs] {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    height: 40px;
    font-weight: bold;
}

.answers-grid[b-zb89oss9cs] {
    display: flex;
    gap: 5rem;
    -webkit-justify-content: center;
    justify-content: center;
}

.split-title[b-zb89oss9cs] {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.score[b-zb89oss9cs] {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.number-choice[b-zb89oss9cs] {
    font-size: 2rem;
}

.number-choice.selected[b-zb89oss9cs] {
    border: 2px solid #007bff;
    background-color: #e7f1ff;
}

.answer-count[b-zb89oss9cs] {
    font-size: 1.3rem;
}

.choose-number[b-zb89oss9cs] {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 2rem;
}

.change-selection[b-zb89oss9cs] {
    display: grid;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-label[b-zb89oss9cs] {
    margin-right: 0.5rem;
    font-weight: bold;
}

@media (max-width: 767px) {
    .answers-grid[b-zb89oss9cs] {
        gap: 1.5rem;
    }

    .question-area[b-zb89oss9cs] {
        gap: 1rem;
    }

    .number-display[b-zb89oss9cs] {
        font-size: 2rem;
        padding: 5px;
        width: 50px;
        height: 60px;
        text-align: center;
        -ms-align-content: center;
        -webkit-align-content: center;
        align-content: center;
        background: #C4ECC4;
        background: linear-gradient(180deg, rgba(196, 236, 196, 1) 0%, rgba(254, 246, 190, 1) 100%);
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px;
        font-weight: bold;
    }

    .number-top[b-zb89oss9cs] {
        width: auto;
        height: auto;
    }
}
/* _content/CalcEducationApp/Components/Pages/Tables.razor.rz.scp.css */
.choice-list[b-0b0ypvj1sd] {
    display: flex;
    padding-bottom: 0.5rem;
    max-width: 100%;
    gap: 2rem;
    flex-flow: wrap;
    justify-content: center;
}

.controls[b-0b0ypvj1sd] {
    margin: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.control-btn[b-0b0ypvj1sd] {
    min-width: 3rem;
}

.question-area[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.equation-display[b-0b0ypvj1sd] {
    font-size: 2rem;
    font-weight: bold;
}

.progress-container[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    height: 20px;
}

.result-text[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    height: 40px;
    font-weight: bold;
}

.answers-grid[b-0b0ypvj1sd] {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.table-title[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
}

.score[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
}

.number-choice[b-0b0ypvj1sd] {
    font-size: 2rem;
}

.number-choice.selected[b-0b0ypvj1sd] {
    border: 2px solid #007bff;
    background-color: #e7f1ff;
}

.answer-count[b-0b0ypvj1sd] {
    font-size: 1.3rem;
}

.choose-number[b-0b0ypvj1sd] {
    display: flex;
    justify-content: center;
    font-size: 2rem;
}

.change-selection[b-0b0ypvj1sd] {
    display: grid;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-label[b-0b0ypvj1sd] {
    margin-right: 0.5rem;
    font-weight: bold;
}
