/* /Components/Components/SJVDialog.razor.rz.scp.css */
.container-popup[b-ktxpwyx9hr] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 26, 43, 0.58);
}

.popup[b-ktxpwyx9hr] {
    width: min(100%, 760px);
}

.popup-contents[b-ktxpwyx9hr] {
    background: #ffffff;
    border: 1px solid #d8e1ef;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    padding: 1.25rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.modal-main[b-ktxpwyx9hr] {
    display: flex;
    gap: 1rem;
}

.modal-image[b-ktxpwyx9hr] {
    flex: 0 0 auto;
}

.popup-image[b-ktxpwyx9hr] {
    width: 100px;
    height: auto;
}

.modal-text[b-ktxpwyx9hr] {
    flex: 1 1 auto;
}

.modal-header[b-ktxpwyx9hr] {
    margin-bottom: 0.4rem;
}

.modal-title[b-ktxpwyx9hr] {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    color: #0f2748;
}

.modal-body p[b-ktxpwyx9hr] {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.4;
}

.modal-footer[b-ktxpwyx9hr] {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
}

.modal-action-button[b-ktxpwyx9hr] {
    min-width: 5rem;
    border: 1px solid #234f8f;
    background: #f4f8ff;
    color: #0f2748;
    border-radius: 4px;
    padding: 0.35rem 0.8rem;
    cursor: pointer;
}

.modal-action-button:hover[b-ktxpwyx9hr] {
    background: #e7f0ff;
}

.modal-action-button-secondary[b-ktxpwyx9hr] {
    border-color: #7c8798;
    background: #ffffff;
}

.modal-action-button-danger[b-ktxpwyx9hr] {
    border-color: #be284d;
    background: #fff3f6;
}

@media (max-width: 768px) {
    .modal-main[b-ktxpwyx9hr] {
        flex-direction: column;
    }

    .modal-title[b-ktxpwyx9hr] {
        font-size: 1.6rem;
    }

    .modal-body p[b-ktxpwyx9hr] {
        font-size: 1.1rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ixozkww7im] {
    min-height: 100vh;
}

main[b-ixozkww7im] {
    width: 100%;
}

.content[b-ixozkww7im] {
    max-width: none;
    width: 100%;
}

#blazor-error-ui[b-ixozkww7im] {
    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-ixozkww7im] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-fvcarhxxi2],
.components-reconnect-repeated-attempt-visible[b-fvcarhxxi2],
.components-reconnect-failed-visible[b-fvcarhxxi2],
.components-pause-visible[b-fvcarhxxi2],
.components-resume-failed-visible[b-fvcarhxxi2],
.components-rejoining-animation[b-fvcarhxxi2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-retrying[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-failed[b-fvcarhxxi2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-fvcarhxxi2] {
    display: block;
}


#components-reconnect-modal[b-fvcarhxxi2] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-fvcarhxxi2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-fvcarhxxi2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-fvcarhxxi2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-fvcarhxxi2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-fvcarhxxi2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-fvcarhxxi2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-fvcarhxxi2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-fvcarhxxi2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-fvcarhxxi2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-fvcarhxxi2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-fvcarhxxi2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-fvcarhxxi2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-fvcarhxxi2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-fvcarhxxi2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-fvcarhxxi2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-fvcarhxxi2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-fvcarhxxi2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-fvcarhxxi2 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Omistajanvaihdos.razor.rz.scp.css */
/* /Components/Pages/OmistajanvaihdosWizard.razor.rz.scp.css */
.wizard-form[b-7k1ullhtes] {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #dde5f0;
    border-radius: 14px;
    padding: 1.5rem;
}

.wizard-header[b-7k1ullhtes] {
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border: 1px solid #d9e2ee;
    border-radius: 12px;
    background: #f6f9ff;
}

.wizard-steps[b-7k1ullhtes] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
}

.wizard-step[b-7k1ullhtes] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
    padding: 0.5rem 0.4rem;
}

.wizard-step:not(:last-child)[b-7k1ullhtes]::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: -0.25rem;
    width: 0.5rem;
    height: 1px;
    background: #cad7eb;
}

.wizard-step-index[b-7k1ullhtes] {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #9db2ce;
    background: #ffffff;
    color: #31527d;
}

.wizard-step-label[b-7k1ullhtes] {
    font-size: 0.77rem;
    color: #4f6686;
}

.wizard-step.completed .wizard-step-index[b-7k1ullhtes] {
    background: #1d5baa;
    border-color: #1d5baa;
    color: #ffffff;
}

.wizard-step.active .wizard-step-index[b-7k1ullhtes] {
    border-color: #f08f2d;
    background: #fff4e8;
    color: #8a4f11;
    box-shadow: 0 0 0 3px rgba(240, 143, 45, 0.15);
}

.wizard-step.active .wizard-step-label[b-7k1ullhtes] {
    color: #193d6e;
    font-weight: 700;
}

.wizard-active-step[b-7k1ullhtes] {
    margin: 0.8rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b365c;
}

.wizard-summary[b-7k1ullhtes] {
    margin-bottom: 1rem;
}

.wizard-panel[b-7k1ullhtes] {
    padding: 0.3rem 0.2rem 0.2rem;
}

.wizard-auth-note[b-7k1ullhtes] {
    margin: 0.8rem 0 0;
    font-size: 0.85rem;
    color: #4c5f7d;
}

.role-selection-group .radiobutton-container[b-7k1ullhtes] {
    margin-bottom: 0.55rem;
    max-width: 100%;
}

.wizard-actions[b-7k1ullhtes] {
    margin-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.wizard-actions .submit-button[b-7k1ullhtes] {
    min-width: 8rem;
    margin-top: 0;
}

.wizard-step-error[b-7k1ullhtes] {
    margin-top: 0.8rem;
    color: #b12c2c;
    font-size: 0.85rem;
    font-weight: 600;
}

.button-back[b-7k1ullhtes] {
    border: 1px solid #cad4e5;
    background: #ffffff;
}

.button-next[b-7k1ullhtes],
.button-submit[b-7k1ullhtes] {
    background: #e6eef9;
    border: 1px solid #c3d6f2;
    color: #193d6e;
}

.button-next:hover[b-7k1ullhtes],
.button-submit:hover[b-7k1ullhtes] {
    background: #d7e7fd;
}

@media (max-width: 992px) {
    .wizard-actions[b-7k1ullhtes] {
        flex-direction: column;
    }

    .wizard-actions .submit-button[b-7k1ullhtes] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wizard-form[b-7k1ullhtes] {
        padding: 1rem 0.9rem;
    }

    .wizard-header[b-7k1ullhtes] {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .wizard-steps[b-7k1ullhtes] {
        display: flex;
        overflow-x: auto;
        gap: 0.45rem;
        padding-bottom: 0.35rem;
        scrollbar-width: thin;
        grid-template-columns: none;
    }

    .wizard-step[b-7k1ullhtes] {
        min-width: 142px;
        border: 1px solid #cfdbec;
        border-radius: 10px;
        padding: 0.5rem 0.55rem;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        background: #ffffff;
    }

    .wizard-step:not(:last-child)[b-7k1ullhtes]::after {
        display: none;
    }

    .wizard-step-label[b-7k1ullhtes] {
        font-size: 0.74rem;
        line-height: 1.15;
    }

    .wizard-step.completed[b-7k1ullhtes] {
        background: #eef4fe;
        border-color: #b9ccef;
    }

    .wizard-step.active[b-7k1ullhtes] {
        background: #fff7ee;
        border-color: #f5c797;
    }

    .wizard-step.active .wizard-step-label[b-7k1ullhtes] {
        color: #0f3568;
    }

    .wizard-active-step[b-7k1ullhtes] {
        margin-top: 0.45rem;
        font-size: 0.8rem;
    }
}
/* /Components/Pages/OtaYhteytta.razor.rz.scp.css */
