/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-jgrc4tgfll] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh; /*fallback*/
    height: 100dvh;
    width: 100vw; /*fallback*/
    width: 100dvw;
    overflow: hidden;
}

#blazor-error-ui[b-jgrc4tgfll] {
    background: #a54705;
    color: #fff;
    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-jgrc4tgfll] {
        font-size: 1.25rem;
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-f8opqfqko7],
.components-reconnect-repeated-attempt-visible[b-f8opqfqko7],
.components-reconnect-failed-visible[b-f8opqfqko7],
.components-pause-visible[b-f8opqfqko7],
.components-resume-failed-visible[b-f8opqfqko7],
.components-rejoining-animation[b-f8opqfqko7] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-retrying[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-failed[b-f8opqfqko7],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-f8opqfqko7] {
    display: block;
}


#components-reconnect-modal[b-f8opqfqko7] {
    background-color: white;
    color: black;
    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-f8opqfqko7 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-f8opqfqko7 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-f8opqfqko7 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-f8opqfqko7]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-f8opqfqko7 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-f8opqfqko7 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-f8opqfqko7 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-f8opqfqko7 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-f8opqfqko7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-f8opqfqko7] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-f8opqfqko7] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-f8opqfqko7] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-f8opqfqko7] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-f8opqfqko7] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-f8opqfqko7] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-f8opqfqko7 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-f8opqfqko7] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-f8opqfqko7 {
    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/Home.razor.rz.scp.css */
.main[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.boxy-logo[b-a92n4asi51] {
    margin: 0 0 0.25rem 0;
    object-fit: contain;
}

.left-panel[b-a92n4asi51] {
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

[b-a92n4asi51] .decklist-input {
    height: 100%;
    flex: 1;
    margin: 0.25rem;
    padding: 0.25rem;
    overflow-y: auto;
    overflow-x: auto;
    text-wrap: nowrap;
    resize: none;
}

.decklist-errors[b-a92n4asi51] {
    display: flex;
    flex-direction: column;
    height: auto;
    background: #ff000016;
    border: 1px solid #ff000032;
    overflow: hidden;
    margin: 0.25rem;
    padding: 0.25rem;
}

.decklist-errors-text[b-a92n4asi51] {
    color: #ff0000;
    text-wrap: nowrap;
}

[b-a92n4asi51] .submit-decklist-button {
    margin: 0.25rem;
}

.right-panel[b-a92n4asi51] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
}

.card-display-area[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: auto;
    border: 2px solid #ffffff32;
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
    align-content: start;
}

.card-display-wrapper[b-a92n4asi51] {
    display: flex;
    flex-direction: column;
    border: 0.25rem solid transparent;
    align-self: end;
}

.card-image-grouper[b-a92n4asi51] {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-self: center;
}

.card-image-container[b-a92n4asi51] {
    zoom: 40%;
    transition: zoom 0.1s ease-in-out;
}

.card-image-container.active[b-a92n4asi51] {
    zoom: 100%;
}

.card-image[b-a92n4asi51] {
    object-fit: contain;
}

.card-controls-grouper[b-a92n4asi51] {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-self: center;
    width: 100%;
    contain: inline-size;
}

[b-a92n4asi51] .card-quantity-input {
    min-width: 2rem;
    width: 2rem;
    text-align: center;
    border-color: var(--rz-input-background-color);
    border-radius: 0;
}

[b-a92n4asi51] .card-set-selector {
    flex: auto;
    border-color: var(--rz-input-background-color);
    border-radius: 0;
}

.right-panel-controls[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0.25rem 0 0.25rem 0;
}

[b-a92n4asi51] .pdf-submit-button {
    margin: 0 0.25rem 0 0;
    flex: 1;
}

[b-a92n4asi51] .pdf-settings-button {
    border-radius: 99rem;
    padding: 0.25rem;
    margin: 0 0.25rem 0 0.25rem;
}

[b-a92n4asi51] .pdf-settings-icon {
    width: 1.5rem;
}

.pdf-options-stack[b-a92n4asi51] {
    display: flex;
    flex-direction: column;
}

.pdf-options-row[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    padding: 0.1rem;
}

.pdf-row-label[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    width: 10rem;
    align-items: center;
    justify-content: end;
    padding: 0.1rem 1rem 0.1rem 0.1rem;
}

.pdf-row-option[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    width: 10rem;
    align-items: center;
    justify-content: start;
    padding: 0.1rem;
}

.card-option-dialog[b-a92n4asi51] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.card-option-dialog-header[b-a92n4asi51] {
    font-size: xx-large;
    justify-items: center;
    align-self: center;
    text-align: center;
}

.card-option-dialog-cards[b-a92n4asi51] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff16;
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
    align-content: start;
    padding: 0.25rem;
    margin: 1rem 0 0 0;
}

[b-a92n4asi51] .card-option-dialog-cardbutton {
    margin: 0.25rem;
    padding: 1rem;
}

/* Big screens */
@media (min-width: 641px) {
}

/* Small screens */
@media (max-width: 640.98px) {
    .main[b-a92n4asi51] {
        flex-direction: column;
        overflow-y: auto;
        padding: 0;
    }

    .boxy-logo[b-a92n4asi51] {
        height: 100px;
        margin: 0.1rem;
    }

    .left-panel[b-a92n4asi51] {
        align-self: center;
        max-width: 500px;
        width: 100%;
    }

    [b-a92n4asi51] .decklist-input {
        height: auto;
        min-height: 200px;
        overflow-y: auto;
        overflow-x: auto;
    }

    .right-panel[b-a92n4asi51] {
        height: revert;
        padding: 0;
    }

    .card-display-area[b-a92n4asi51] {
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .card-display-wrapper[b-a92n4asi51] {
        align-self: center;
    }

    .right-panel-controls[b-a92n4asi51] {
        padding: 1rem;
    }
}
