/* _content/mage-knights.Web/Components/Game/GameBoard.razor.rz.scp.css */
.board-container[b-rfrykqbi1v] {
    margin-top: 0;
    width: 100%;
    height: calc(100dvh - 3.2rem);
    min-height: 24rem;
    overflow: hidden;
    border: 1px solid rgba(29, 18, 8, 0.72);
    border-radius: 12px;
    position: relative;
    background-image: url("/images/art/Mage-Knight-Artwork-The-Land-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 0 0 1px rgba(215, 181, 109, 0.14),
        inset 0 18px 40px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
    .board-container[b-rfrykqbi1v] {
        height: calc(100dvh - 6.2rem);
        min-height: 18rem;
    }
}

.game-board[b-rfrykqbi1v] {
    width: 36in;
    height: 36in;
    background-image: url("/images/board/playmat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: top left;
    position: absolute;
    isolation: isolate;
    box-shadow:
        inset 0 0 0 3px #241509,
        inset 0 0 0 12px #916a31,
        inset 0 0 0 15px #2d1b09,
        inset 0 0 20px rgba(18, 10, 4, 0.32),
        0 14px 30px rgba(0, 0, 0, 0.28);
}

.game-board[b-rfrykqbi1v]::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0;
    z-index: 0;
    inset: 18px;
    border: 1px solid rgba(255, 230, 177, 0.66);
    box-shadow: inset 0 0 0 2px rgba(89, 54, 18, 0.76);
}

.drag-footprint[b-rfrykqbi1v] {
    position: absolute;
    transform: translate(-50%, -50%);
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}

.piece-info[b-rfrykqbi1v] {
    position: absolute;
    background: rgba(39, 36, 32, 0.95);
    border: 3px solid #8a6e38;
    color: #e8e1d5;
    text-shadow: 1px 1px 2px black;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.9);
    padding: 0.75rem;
    z-index: 200;
    cursor: move;
    width: max-content;
    border-radius: 8px;
}

.piece-info .info-image[b-rfrykqbi1v] {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.piece-info .info-header[b-rfrykqbi1v] {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--mk-gold-bright);
}

.piece-info .pin-btn[b-rfrykqbi1v] {
    float: none;
}

.info-actions[b-rfrykqbi1v] {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.piece-info img[b-rfrykqbi1v] {
    border-radius: 0.25rem;
    max-width: 100%;
}

.attack-lines[b-rfrykqbi1v] {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 100;
}

.attack-preview__glow[b-rfrykqbi1v] {
    fill: none;
    stroke: var(--preview-glow);
    stroke-width: 0.34;
    stroke-linecap: round;
    opacity: 0.9;
}

.attack-preview__beam[b-rfrykqbi1v] {
    fill: none;
    stroke: var(--preview-color);
    stroke-width: 0.1;
    stroke-linecap: round;
    stroke-dasharray: 0.36 0.2;
    animation: attack-preview-flow-b-rfrykqbi1v 1.1s linear infinite;
}

.attack-preview__spark[b-rfrykqbi1v] {
    fill: none;
    stroke: var(--preview-core);
    stroke-width: 0.035;
    stroke-linecap: round;
    stroke-dasharray: 0.04 0.62;
    opacity: 0.85;
    animation: attack-preview-spark-b-rfrykqbi1v 1.8s linear infinite;
}

.attack-preview__origin-ring[b-rfrykqbi1v] {
    fill: rgba(0, 0, 0, 0.15);
    stroke: var(--preview-color);
    stroke-width: 0.05;
}

.attack-preview__origin-core[b-rfrykqbi1v] {
    fill: var(--preview-core);
}

.attack-preview__target-ring[b-rfrykqbi1v] {
    fill: rgba(0, 0, 0, 0.12);
    stroke: var(--preview-accent);
    stroke-width: 0.06;
    stroke-dasharray: 0.16 0.12;
    transform-box: fill-box;
    transform-origin: center;
    animation: attack-preview-spin-b-rfrykqbi1v 1.6s linear infinite;
}

.attack-preview__target-core[b-rfrykqbi1v] {
    fill: var(--preview-color);
}

.attack-preview--remote[b-rfrykqbi1v] {
    opacity: 0.9;
}

.attack-preview--remote .attack-preview__glow[b-rfrykqbi1v] {
    opacity: 0.78;
}

.attack-preview--remote .attack-preview__beam[b-rfrykqbi1v] {
    stroke-width: 0.1;
}

.attack-preview--remote .attack-preview__target-ring[b-rfrykqbi1v] {
    stroke-width: 0.07;
}

.attack-preview--healing .attack-preview__beam[b-rfrykqbi1v] {
    stroke-dasharray: 0.28 0.14;
}

@keyframes attack-preview-flow-b-rfrykqbi1v {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -1.12;
    }
}

@keyframes attack-preview-spark-b-rfrykqbi1v {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -0.66;
    }
}

@keyframes attack-preview-spin-b-rfrykqbi1v {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.board-lines[b-rfrykqbi1v] {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 50;
}

.info-abilities[b-rfrykqbi1v] {
    font-size: 0.8em;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #ccc;
}

.ability-entry[b-rfrykqbi1v] {
    display: block;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ability-type[b-rfrykqbi1v] {
    font-weight: bold;
}
/* _content/mage-knights.Web/Components/Game/GamePiece.razor.rz.scp.css */
.piece[b-6hy9h2wuiv] {
    position: absolute;
    width: 1in;
    height: 1in;
    user-select: none;
    -webkit-user-drag: none;
    z-index: 2;
}

.piece.terrain-piece[b-6hy9h2wuiv] {
    z-index: 1;
}

.disabled-terrain[b-6hy9h2wuiv] {
    pointer-events: none;
}

.piece.opponent-piece[b-6hy9h2wuiv] {
    transition: left 0.25s linear, top 0.25s linear, transform 0.25s linear;
}

.piece-base[b-6hy9h2wuiv] {
    position: relative;
    width: 1in;
    height: 1in;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #333;
    user-select: none;
    -webkit-user-drag: none;
}

.piece-base[b-6hy9h2wuiv]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 5.5px black;
    pointer-events: none;
}

.piece-base.terrain-base[b-6hy9h2wuiv]::after {
    display: none;
}


.piece-base.mounted[b-6hy9h2wuiv] {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.piece-base.mounted[b-6hy9h2wuiv]::after {
    display: none;
}

.mounted-base-svg[b-6hy9h2wuiv] {
    display: block;
    overflow: visible;
}

.piece.selected .piece-base.mounted[b-6hy9h2wuiv],
.piece.targeted .piece-base.mounted[b-6hy9h2wuiv] {
    box-shadow: none;
}

.piece.selected .piece-base[b-6hy9h2wuiv] {
    box-shadow: 0 0 0 2px blue;
}

.piece.targeted .piece-base[b-6hy9h2wuiv] {
    box-shadow: 0 0 0 2px red;
    position: relative;
    z-index: 2;
}

.piece.targeted[b-6hy9h2wuiv] {
    z-index: 100;
}

.piece-base img[b-6hy9h2wuiv] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.piece-overlay[b-6hy9h2wuiv] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    pointer-events: none;
}

.owner-marker[b-6hy9h2wuiv] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
    pointer-events: none;
}

.token-marker[b-6hy9h2wuiv] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    pointer-events: none;
}

.arc-overlay[b-6hy9h2wuiv] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 25;
    pointer-events: none;
}

.click-change-overlay[b-6hy9h2wuiv] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 30;
}

.piece-click-change[b-6hy9h2wuiv] {
    position: absolute;
    left: 50%;
    top: -0.12in;
    transform: translate(-50%, 0);
    min-width: 0;
    padding: 0;
    font-family: 'MedievalSharp', cursive;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    white-space: nowrap;
    animation: piece-click-change-float-b-6hy9h2wuiv 2s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.piece-click-change[b-6hy9h2wuiv]::before {
    content: '';
    position: absolute;
    inset: -0.28rem -0.38rem;
    border-radius: 999px;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.piece-click-change.damage[b-6hy9h2wuiv] {
    color: #ff3b30;
    text-shadow: 0 0 6px rgba(255, 99, 99, 0.98), 0 0 12px rgba(255, 59, 48, 0.92), 0 0 22px rgba(185, 28, 28, 0.8), 0 0 34px rgba(127, 29, 29, 0.55);
}

.piece-click-change.damage[b-6hy9h2wuiv]::before {
    background: radial-gradient(circle, rgba(255, 82, 82, 0.5) 0%, rgba(220, 38, 38, 0.34) 42%, rgba(127, 29, 29, 0.16) 64%, rgba(127, 29, 29, 0) 82%);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.75), 0 0 34px rgba(127, 29, 29, 0.52);
}

.piece-click-change.heal[b-6hy9h2wuiv] {
    color: #22c55e;
    text-shadow: 0 0 6px rgba(134, 239, 172, 0.98), 0 0 12px rgba(34, 197, 94, 0.92), 0 0 22px rgba(22, 163, 74, 0.8), 0 0 34px rgba(21, 128, 61, 0.55);
}

.piece-click-change.heal[b-6hy9h2wuiv]::before {
    background: radial-gradient(circle, rgba(74, 222, 128, 0.48) 0%, rgba(34, 197, 94, 0.32) 42%, rgba(21, 128, 61, 0.15) 64%, rgba(21, 128, 61, 0) 82%);
    box-shadow: 0 0 18px rgba(74, 222, 128, 0.72), 0 0 34px rgba(21, 128, 61, 0.5);
}

@keyframes piece-click-change-float-b-6hy9h2wuiv {
    0% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }

    12% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, calc(-1 * var(--click-change-rise, 1in)));
    }
}
/* _content/mage-knights.Web/Components/Layout/GameLayout.razor.rz.scp.css */
.page[b-546uhub9er] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-546uhub9er] {
    flex: 1;
}

#blazor-error-ui[b-546uhub9er] {
    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-546uhub9er] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/mage-knights.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-jtj59bmbn8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jtj59bmbn8] {
    flex: 1;
}

.sidebar[b-jtj59bmbn8] {
    background-color: #04070d;
    background-image: url("/images/backgrounds/block-walls.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    border-right: var(--mk-border-thick);
}

.top-row[b-jtj59bmbn8] {
    background-color: var(--mk-panel-bg);
    border-bottom: var(--mk-border-thick);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-jtj59bmbn8]  a,
.top-row[b-jtj59bmbn8]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-jtj59bmbn8]  a:hover,
.top-row[b-jtj59bmbn8]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-jtj59bmbn8]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-jtj59bmbn8] {
        justify-content: space-between;
    }

    .top-row[b-jtj59bmbn8]  a,
    .top-row[b-jtj59bmbn8]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jtj59bmbn8] {
        flex-direction: row;
    }

    .sidebar[b-jtj59bmbn8] {
        width: 250px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    main[b-jtj59bmbn8] {
        margin-left: 250px;
    }

    .top-row[b-jtj59bmbn8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-jtj59bmbn8]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-jtj59bmbn8],
    article[b-jtj59bmbn8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-jtj59bmbn8] {
    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-jtj59bmbn8] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}


/* _content/mage-knights.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kpry2o1r0s] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.navbar-toggler:checked[b-kpry2o1r0s] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-kpry2o1r0s] {
    position: relative;
    min-height: 4.5rem;
    overflow: hidden;
    border-bottom: var(--mk-border-thick);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 218, 132, 0.24), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(171, 36, 47, 0.28), transparent 30%),
        linear-gradient(120deg, #12050a 0%, #2a0d13 32%, #5b1d1e 62%, #18080d 100%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), inset 0 18px 42px rgba(255, 255, 255, 0.06);
}

.top-row[b-kpry2o1r0s]::before {
    content: "";
    position: absolute;
    inset: -35% -20%;
    background: linear-gradient(
        115deg,
        transparent 26%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 227, 165, 0.34) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        transparent 74%);
    transform: translateX(-65%) skewX(-20deg);
    animation: nav-banner-shimmer-b-kpry2o1r0s 5.8s linear infinite;
    pointer-events: none;
}

.top-row[b-kpry2o1r0s]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(0, 0, 0, 0.14));
    pointer-events: none;
}

.top-row .container-fluid[b-kpry2o1r0s],
.top-row .navbar-brand[b-kpry2o1r0s] {
    position: relative;
    z-index: 1;
}

.navbar-brand[b-kpry2o1r0s] {
    font-size: 1.1rem;
}

.navbar-brand img[b-kpry2o1r0s] {
    max-height: 60px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
}

.bi[b-kpry2o1r0s] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill[b-kpry2o1r0s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cfaa63' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M14 16H2a1 1 0 0 1-1-1V8h2V3a1 1 0 0 1 1-1h2v2h2V2h2v2h2V2h2a1 1 0 0 1 1 1v5h2v7a1 1 0 0 1-1 1zM4 11v4h3v-4H4zm5 0v4h3v-4H9z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill[b-kpry2o1r0s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cfaa63' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested[b-kpry2o1r0s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cfaa63' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M1 7.5v6A1.5 1.5 0 0 0 2.5 15h11A1.5 1.5 0 0 0 15 13.5v-6h-5v.5a2 2 0 0 1-4 0v-.5H1zM1 6.5V7h14v-.5A7 3.5 0 0 0 1 6.5z'/%3E%3C/svg%3E");
}

.nav-item[b-kpry2o1r0s] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-kpry2o1r0s] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-kpry2o1r0s] {
    padding-bottom: 1rem;
}

.nav-item[b-kpry2o1r0s]  a {
    color: var(--mk-gold);
    font-family: 'MedievalSharp', cursive;
    font-size: 1.15rem;
    letter-spacing: 0.05rem;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    transition: all 0.2s ease-in-out;
}

.nav-item[b-kpry2o1r0s]  a.active {
    background: linear-gradient(to right, var(--mk-red-bright), var(--mk-red-dark));
    color: var(--mk-gold-bright);
    text-shadow: 1px 1px 2px black, 0 0 10px rgba(0, 0, 0, 0.8);
    border-left: 4px solid var(--mk-gold-bright);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.nav-item[b-kpry2o1r0s]  a:hover:not(.active) {
    background-color: var(--mk-panel-bg);
    color: var(--mk-gold-bright);
    text-shadow: 0 0 8px rgba(207, 170, 99, 0.8);
    border-left: 4px solid var(--mk-gold-dark);
}

.nav-scrollable[b-kpry2o1r0s] {
    display: none;
}

.navbar-toggler:checked~.nav-scrollable[b-kpry2o1r0s] {
    display: block;
}

@keyframes nav-banner-shimmer-b-kpry2o1r0s {
    0% {
        transform: translateX(-65%) skewX(-20deg);
    }

    100% {
        transform: translateX(165%) skewX(-20deg);
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-kpry2o1r0s] {
        display: none;
    }

    .nav-scrollable[b-kpry2o1r0s] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.notification-dot[b-kpry2o1r0s] {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    margin-left: 4px;
}

/* _content/mage-knights.Web/Components/MageKnight/MageKnightDial.razor.rz.scp.css */
.dial-container[b-7nwhuwn9my] {
    width: 120px;
    margin: 1rem;
    text-align: center;
}

.model-image img[b-7nwhuwn9my] {
    width: 100px;
    height: 100px;
}

.dial[b-7nwhuwn9my] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.5rem;
}

.dial-row[b-7nwhuwn9my] {
    padding: 2px;
    border: 1px solid #333;
}
/* _content/mage-knights.Web/Components/MageKnight/MageKnightStatWindow.razor.rz.scp.css */
.stat-window[b-rwmeo3giva] {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}
.model-image[b-rwmeo3giva] {
    width: 120px;
    height: 120px;
    margin-bottom: 0.5rem;
}

/* _content/mage-knights.Web/Components/MageKnight/StatDial.razor.rz.scp.css */
.stat-dial[b-9drbqjgitg] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: black;
    margin: 0.5rem auto 0 auto;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 30px);
    grid-template-rows: repeat(4, 30px);
    place-content: center;
    place-items: center;
    padding-top: 20px;
    box-sizing: border-box;
}

.stat-box[b-9drbqjgitg] {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-icon[b-9drbqjgitg] {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.speed-icon[b-9drbqjgitg] {
    grid-column: 1;
    grid-row: 1;
}

.speed-box[b-9drbqjgitg] {
    grid-column: 2;
    grid-row: 1;
}

.attack-icon[b-9drbqjgitg] {
    grid-column: 1;
    grid-row: 2;
    width: 20px;
    height: 20px;
}

.attack-box[b-9drbqjgitg] {
    grid-column: 2;
    grid-row: 2;
}

.defense-icon[b-9drbqjgitg] {
    grid-column: 1;
    grid-row: 3;
}

.defense-box[b-9drbqjgitg] {
    grid-column: 2;
    grid-row: 3;
}

.range-box[b-9drbqjgitg] {
    grid-column: 3;
    grid-row: 2;
    border: none;
    color: white;
}

.damage-box[b-9drbqjgitg] {
    grid-column: 3;
    grid-row: 3;
}

.targets-icon[b-9drbqjgitg] {
    grid-column: 4;
    grid-row: 2;
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.damage-icon[b-9drbqjgitg] {
    grid-column: 4;
    grid-row: 3;
}

.faction-container[b-9drbqjgitg] {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    margin-left: 1.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.faction-icon[b-9drbqjgitg] {
    width: 27px;
    height: 27px;
    object-fit: contain;
}
/* _content/mage-knights.Web/Components/Pages/Admin.razor.rz.scp.css */
.admin-columns[b-hvsoq02b0k] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
}

.admin-section[b-hvsoq02b0k] {
    border: 1px solid #000;
    border-radius: 0.5rem;
    padding: 0.35rem;
    min-width: 0;
}

.admin-section-compact[b-hvsoq02b0k] {
    grid-column: span 2;
}

.admin-section-wide[b-hvsoq02b0k] {
    grid-column: span 6;
}

.admin-section .mk-panel-body[b-hvsoq02b0k] {
    padding: 0.75rem !important;
}

.admin-section .form-label[b-hvsoq02b0k] {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.admin-section .form-control[b-hvsoq02b0k] {
    min-height: 2.25rem;
}

.admin-section .mb-3[b-hvsoq02b0k] {
    margin-bottom: 0.6rem !important;
}

.admin-section .mk-btn[b-hvsoq02b0k] {
    min-height: 2.35rem;
}

.admin-feedback-item[b-hvsoq02b0k] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.65rem;
    padding: 0.75rem;
    border-radius: 0.6rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-feedback-item:last-child[b-hvsoq02b0k] {
    margin-bottom: 0;
}

.admin-feedback-copy[b-hvsoq02b0k] {
    flex: 1 1 auto;
    min-width: 0;
}

.admin-feedback-meta[b-hvsoq02b0k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-bottom: 0.35rem;
    color: var(--mk-gold-bright);
    font-size: 0.78rem;
}

.admin-feedback-message[b-hvsoq02b0k] {
    color: var(--mk-parchment);
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-feedback-delete[b-hvsoq02b0k] {
    min-width: 5.75rem;
    white-space: nowrap;
    align-self: center;
}

@media (max-width: 1599px) {
    .admin-columns[b-hvsoq02b0k] {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .admin-section-compact[b-hvsoq02b0k] {
        grid-column: span 2;
    }

    .admin-section-wide[b-hvsoq02b0k] {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    .admin-columns[b-hvsoq02b0k] {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .admin-section-compact[b-hvsoq02b0k],
    .admin-section-wide[b-hvsoq02b0k] {
        grid-column: auto;
    }

    .admin-section[b-hvsoq02b0k] {
        padding: 0.5rem;
    }

    .admin-feedback-item[b-hvsoq02b0k] {
        flex-direction: column;
    }

    .admin-feedback-delete[b-hvsoq02b0k] {
        width: 100%;
    }
}
/* _content/mage-knights.Web/Components/Pages/Armies.razor.rz.scp.css */
.builder[b-s26952eiwv] {
    display: flex;
    gap: 1rem;
}

.models[b-s26952eiwv] {
    flex: 1;
    border: 1px solid #ccc;
    padding: 1rem;
}

.model-item[b-s26952eiwv] {
    margin-bottom: 0.5rem;
    cursor: grab;
}

.model-thumb[b-s26952eiwv] {
    /* Match thumbnail size with inventory list */
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.army-item[b-s26952eiwv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    border: 1px solid #000;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.army-actions button[b-s26952eiwv] {
    margin-left: 0.25rem;
}
/* _content/mage-knights.Web/Components/Pages/EditArmy.razor.rz.scp.css */
.army-model-thumb[b-1r84bjb0mq] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(0, 0, 0, 0.35);
    cursor: help;
}

.army-model-thumb .model-thumb[b-1r84bjb0mq] {
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.army-model-summary[b-1r84bjb0mq] {
    min-width: 0;
}

.army-model-points[b-1r84bjb0mq] {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--mk-gold-bright);
    background: rgba(74, 60, 28, 0.5);
    font-weight: 700;
}

.army-model-preview[b-1r84bjb0mq] {
    position: fixed;
    z-index: 1200;
    max-width: min(360px, calc(100vw - 32px));
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(20, 16, 12, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}

.army-model-preview[b-1r84bjb0mq]  .stat-window {
    margin-top: 0;
}
/* _content/mage-knights.Web/Components/Pages/Games.razor.rz.scp.css */
.die[b-51zbvq0cbr] {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #000;
    border-radius: 0.5rem;
    background-color: #fff;
    margin-left: 0.25rem;
}

.die-1[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 50% 50%, #000 15%, transparent 16%);
}

.die-2[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 25% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 75%, #000 15%, transparent 16%);
}

.die-3[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 25% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 50% 50%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 75%, #000 15%, transparent 16%);
}

.die-4[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 25% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 25% 75%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 75%, #000 15%, transparent 16%);
}

.die-5[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 25% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 25% 75%, #000 15%, transparent 16%),
        radial-gradient(circle at 50% 50%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 75%, #000 15%, transparent 16%);
}

.die-6[b-51zbvq0cbr] {
    background-image:
        radial-gradient(circle at 25% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 25% 50%, #000 15%, transparent 16%),
        radial-gradient(circle at 25% 75%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 25%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 50%, #000 15%, transparent 16%),
        radial-gradient(circle at 75% 75%, #000 15%, transparent 16%);
}

.games-columns[b-51zbvq0cbr] {
    display: flex;
    gap: 1rem;
}

.games-columns > div[b-51zbvq0cbr] {
    border: 1px solid #000;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.game-item[b-51zbvq0cbr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.game-actions button[b-51zbvq0cbr] {
    margin-left: 0.25rem;
}

.player-game[b-51zbvq0cbr] {
    background-color: #ffe5cc; /* orangish */
    border: 2px solid #7fffd4; /* aqua */
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.active-player-game[b-51zbvq0cbr] {
    background-color: #ffe5cc;
    border: 2px solid #000;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

/* _content/mage-knights.Web/Components/Pages/Home.razor.rz.scp.css */
.hero-banner[b-nbj01w3aaf] {
    position: relative;
    overflow: hidden;
    margin: 1.5rem auto 2.25rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: var(--mk-border-thick);
    border-radius: 4px;
    background:
        radial-gradient(circle at top right, rgba(231, 206, 135, 0.16), transparent 35%),
        linear-gradient(145deg, rgba(74, 28, 28, 0.94), rgba(26, 13, 11, 0.94));
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.65), var(--mk-shadow-heavy);
    color: var(--mk-parchment);
}

.hero-banner[b-nbj01w3aaf]::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(231, 206, 135, 0.18);
    pointer-events: none;
}

.hero-kicker[b-nbj01w3aaf] {
    position: relative;
    z-index: 1;
    margin-bottom: 0.9rem;
    color: var(--mk-gold);
    font-family: "Cinzel Decorative", serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title[b-nbj01w3aaf] {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--mk-gold-bright);
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.15rem, 5.2vw, 3.6rem);
    line-height: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-copy[b-nbj01w3aaf] {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 1.25rem auto 1.6rem;
    color: rgba(232, 225, 213, 0.92);
    font-size: 1.06rem;
    line-height: 1.7;
    text-align: center;
}

.hero-feature-list[b-nbj01w3aaf] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
}

.hero-feature[b-nbj01w3aaf] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(231, 206, 135, 0.16);
    border-radius: 4px;
}

.hero-feature-icon[b-nbj01w3aaf] {
    color: var(--mk-gold-bright);
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.hero-feature-title[b-nbj01w3aaf] {
    color: var(--mk-gold-bright);
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-feature-text[b-nbj01w3aaf] {
    margin-top: 0.2rem;
    color: rgba(232, 225, 213, 0.88);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .hero-banner[b-nbj01w3aaf] {
        margin-top: 1rem;
        padding: 1.2rem;
    }
}
/* _content/mage-knights.Web/Components/Pages/Inventory.razor.rz.scp.css */
.model-grid[b-nay9a75u7x] {
    display: flex;
    flex-wrap: wrap;
}
.opened-model[b-nay9a75u7x] {
    text-align: center;
    margin: 0.5rem;
}

.opened-model img[b-nay9a75u7x] {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.25rem;
}

.model-name[b-nay9a75u7x] {
    font-size: 0.8rem;
}

.model-thumb[b-nay9a75u7x] {
    width: 50px;
    height: auto;
    margin-right: 0.5rem;
}

.sortable[b-nay9a75u7x] {
    cursor: pointer;
}

.booster-list[b-nay9a75u7x] {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.booster-item[b-nay9a75u7x] {
    text-align: center;
}

.booster-thumb[b-nay9a75u7x] {
    height: 96px;
    width: auto;
    cursor: pointer;
    display: block;
    margin: 0 auto 0.25rem;
}

.inventory-view[b-nay9a75u7x] {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.inventory-view .scroll-panel[b-nay9a75u7x] {
    max-height: 70vh;
    overflow-y: auto;
}

.rank-cell[b-nay9a75u7x] {
    border: 1px solid #000;
    border-radius: 4px;
    padding: 0 0.25rem;
    text-align: center;
}

.stat-panel[b-nay9a75u7x] {
    min-width: 220px;
}
/* _content/mage-knights.Web/Components/Pages/Login.razor.rz.scp.css */
.auth-page[b-rngs09978y] {
    padding: clamp(1.25rem, 4vw, 2.5rem) 0.75rem 2rem;
}

.auth-stage[b-rngs09978y] {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.auth-callout[b-rngs09978y] {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: var(--mk-border-thick);
    border-radius: 4px;
    background:
        radial-gradient(circle at top right, rgba(231, 206, 135, 0.16), transparent 35%),
        linear-gradient(145deg, rgba(74, 28, 28, 0.94), rgba(26, 13, 11, 0.94));
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.65), var(--mk-shadow-heavy);
}

.auth-callout[b-rngs09978y]::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(231, 206, 135, 0.18);
    pointer-events: none;
}

.auth-kicker[b-rngs09978y] {
    position: relative;
    z-index: 1;
    margin-bottom: 0.9rem;
    color: var(--mk-gold);
    font-family: "Cinzel Decorative", serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.auth-title[b-rngs09978y] {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--mk-gold-bright);
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.15rem, 5.2vw, 3.6rem);
    line-height: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.auth-copy[b-rngs09978y] {
    position: relative;
    z-index: 1;
    max-width: 32rem;
    margin: 1.25rem 0 1.6rem;
    color: rgba(232, 225, 213, 0.92);
    font-size: 1.06rem;
    line-height: 1.7;
}

.auth-feature-list[b-rngs09978y] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
}

.auth-feature[b-rngs09978y] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(231, 206, 135, 0.16);
    border-radius: 4px;
}

.auth-feature-icon[b-rngs09978y] {
    color: var(--mk-gold-bright);
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.auth-feature-title[b-rngs09978y] {
    color: var(--mk-gold-bright);
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-feature-text[b-rngs09978y] {
    margin-top: 0.2rem;
    color: rgba(232, 225, 213, 0.88);
    line-height: 1.5;
}

.auth-panel[b-rngs09978y] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.auth-panel-header[b-rngs09978y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-panel-body[b-rngs09978y] {
    flex: 1;
    padding: clamp(1.2rem, 2.5vw, 1.75rem);
}

.auth-mode-toggle[b-rngs09978y] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    padding: 0.3rem;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(231, 206, 135, 0.2);
    border-radius: 4px;
}

.auth-mode-btn[b-rngs09978y] {
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(231, 206, 135, 0.18);
    border-radius: 3px;
    background: linear-gradient(to bottom, rgba(58, 54, 48, 0.95), rgba(28, 26, 23, 0.95));
    color: var(--mk-gold);
    font-family: "MedievalSharp", cursive;
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.18s ease-in-out;
}

.auth-mode-btn:hover[b-rngs09978y] {
    border-color: var(--mk-gold-bright);
    color: var(--mk-gold-bright);
}

.auth-mode-btn.active[b-rngs09978y] {
    background: linear-gradient(to bottom, var(--mk-red-bright), var(--mk-red-dark));
    border-color: var(--mk-gold-bright);
    color: var(--mk-parchment);
    box-shadow: inset 0 0 10px rgba(255, 235, 173, 0.12), 0 0 12px rgba(207, 170, 99, 0.18);
}

.auth-form[b-rngs09978y] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.auth-label[b-rngs09978y] {
    color: var(--mk-gold-bright);
    font-family: "Cinzel", serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-input[b-rngs09978y] {
    min-height: 3rem;
    border-color: rgba(207, 170, 99, 0.55);
    background: linear-gradient(to bottom, rgba(39, 36, 32, 0.96), rgba(24, 22, 19, 0.98));
}

.auth-input[b-rngs09978y]::placeholder {
    color: rgba(232, 225, 213, 0.42);
}

.auth-remember[b-rngs09978y] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.35rem 0 0.65rem;
    color: var(--mk-parchment);
}

.auth-remember .form-check-input[b-rngs09978y] {
    margin-top: 0;
    background-color: rgba(28, 26, 23, 0.92);
    border-color: rgba(207, 170, 99, 0.55);
}

.auth-warning[b-rngs09978y],
.auth-error-panel[b-rngs09978y] {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    line-height: 1.55;
}

.auth-warning[b-rngs09978y] {
    background: linear-gradient(to right, rgba(116, 79, 25, 0.3), rgba(56, 39, 12, 0.28));
    border: 1px solid rgba(231, 206, 135, 0.35);
    color: var(--mk-parchment);
}

.auth-error-panel[b-rngs09978y] {
    background: linear-gradient(to right, rgba(106, 32, 32, 0.28), rgba(64, 16, 16, 0.32));
    border: 1px solid rgba(255, 125, 125, 0.3);
    color: #ffb8b8;
}

.auth-validation-summary[b-rngs09978y] {
    margin-bottom: 1rem;
    color: #ffb8b8;
}

.auth-validation-summary:empty[b-rngs09978y] {
    display: none;
}

.auth-submit[b-rngs09978y] {
    width: 100%;
    margin-top: 0.6rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 1rem;
}

.auth-switch[b-rngs09978y] {
    margin-top: 1rem;
    text-align: center;
}

.auth-switch-link[b-rngs09978y] {
    padding: 0;
    border: 0;
    background: none;
    color: var(--mk-gold);
    font-size: 0.98rem;
    text-decoration: none;
}

.auth-switch-link:hover[b-rngs09978y] {
    color: var(--mk-gold-bright);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .auth-stage[b-rngs09978y] {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .auth-page[b-rngs09978y] {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .auth-callout[b-rngs09978y] {
        padding: 1.2rem;
    }

    .auth-panel-body[b-rngs09978y] {
        padding: 1rem;
    }

    .auth-mode-btn[b-rngs09978y] {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
}
/* _content/mage-knights.Web/Components/Pages/Trades.razor.rz.scp.css */
.builder[b-s3flk88hwp] {
    display: flex;
    gap: 1rem;
}

.models[b-s3flk88hwp] {
    flex: 1;
    border: 1px solid #ccc;
    padding: 1rem;
}

.model-item[b-s3flk88hwp] {
    margin-bottom: 0.5rem;
}

.model-thumb[b-s3flk88hwp] {
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.trade-columns[b-s3flk88hwp] {
    display: flex;
    gap: 1rem;
}

.trade-columns > div[b-s3flk88hwp] {
    border: 1px solid #000;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.trade-item[b-s3flk88hwp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.trade-actions button[b-s3flk88hwp] {
    margin-left: 0.25rem;
}

.trade-split-panel[b-s3flk88hwp] {
    display: flex;
    flex-direction: column;
}

.trade-split-panel .mk-panel-body[b-s3flk88hwp] {
    flex: 1;
    min-height: 0;
}

.trade-panel-stack[b-s3flk88hwp] {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    height: 100%;
    min-height: 0;
}

.trade-list-section[b-s3flk88hwp] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.trade-list-header[b-s3flk88hwp] {
    margin-bottom: 0.5rem;
    color: var(--mk-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trade-list-scroll[b-s3flk88hwp] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin: 0;
    padding-right: 0.25rem;
}

.trade-action-btn[b-s3flk88hwp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 6.25rem;
    font-size: 0.85rem;
    line-height: 1.1;
    white-space: nowrap;
}

.trade-proposal-column-stack[b-s3flk88hwp] {
    display: grid;
    grid-template-rows: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1rem;
    height: 100%;
    min-height: 0;
}

@media (max-width: 767.98px) {
    .trade-panel-stack[b-s3flk88hwp] {
        grid-template-rows: repeat(2, minmax(180px, 1fr));
    }

    .trade-proposal-column-stack[b-s3flk88hwp] {
        grid-template-rows: repeat(2, minmax(180px, 1fr));
    }

    .trade-action-btn[b-s3flk88hwp] {
        min-width: 5.5rem;
    }
}
/* _content/mage-knights.Web/Components/Shared/ModelCollectionFilterBar.razor.rz.scp.css */
.model-filter-bar[b-msvhejchk1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: end;
}

.model-filter-field[b-msvhejchk1] {
    min-width: 8rem;
}

.model-filter-wide[b-msvhejchk1] {
    min-width: 15rem;
    flex: 1 1 15rem;
}

.model-filter-mini[b-msvhejchk1] {
    min-width: 5.5rem;
}

.model-filter-micro[b-msvhejchk1] {
    min-width: 4.5rem;
}

.model-filter-actions[b-msvhejchk1] {
    display: flex;
    align-items: end;
    min-width: 5rem;
}

.model-filter-label[b-msvhejchk1] {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--mk-gold-bright);
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.model-filter-input[b-msvhejchk1] {
    background: rgba(8, 8, 8, 0.82);
    color: var(--mk-parchment);
    border: var(--mk-border-thin);
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.06);
}

.model-filter-input:focus[b-msvhejchk1] {
    background: rgba(12, 12, 12, 0.95);
    color: var(--mk-parchment);
    border-color: rgba(255, 215, 0, 0.55);
    box-shadow: 0 0 0 0.15rem rgba(255, 215, 0, 0.15);
}

.model-filter-clear[b-msvhejchk1] {
    min-width: 5rem;
}
