/* /Components/Pages/GameBoard.razor.rz.scp.css */
.board-scroll-container[b-s3chmbg904] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.board-wrapper[b-s3chmbg904] {
    display: inline-flex;
    flex-direction: column;
}

/* Header bar */
.board-header[b-s3chmbg904] {
    background: #020024;
    border-radius: 4px 4px 0 0;
    padding: 10px 14px;
}

.board-header-inner[b-s3chmbg904] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.board-title[b-s3chmbg904] {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.board-remaining[b-s3chmbg904] {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.board-remaining-count[b-s3chmbg904] {
    background: white;
    color: #020024;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 4px;
}

/* Sub-header */
.board-subheader[b-s3chmbg904] {
    background-color: #d0d0d0;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
}

/* Side label + table row */
.board-with-side-label[b-s3chmbg904] {
    display: flex;
}

/* Rotated side label */
.side-label[b-s3chmbg904] {
    width: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d0d0d0;
}

.side-label span[b-s3chmbg904] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Table */
.board-table[b-s3chmbg904] {
    border-collapse: collapse;
    table-layout: fixed;
}

/* Digit header cells */
.digit-cell[b-s3chmbg904] {
    background-color: #5a5a5a;
    color: white;
    text-align: center;
    vertical-align: middle;
    font-size: 2rem;
    font-weight: bold;
    border: 1px solid #999;
    padding: 2px;
}

.corner-cell[b-s3chmbg904] {
    width: 60px;
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1.3;
}

.top-digit[b-s3chmbg904] {
    height: 48px;
}

.side-digit[b-s3chmbg904] {
    width: 60px;
}

/* Square cells */
.square-cell[b-s3chmbg904] {
    border: 1px solid #bbb;
    padding: 0;
    vertical-align: top;
    height: 60px;
    width: 60px;
    max-width: 60px;
}

.square-free[b-s3chmbg904] {
    background-color: #e0e0e0;
}

.square-owned[b-s3chmbg904] {
    background-color: #fff;
    cursor: pointer;
}

.square-inner[b-s3chmbg904] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2px 4px;
}

.square-top-row[b-s3chmbg904] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1;
}

.square-number[b-s3chmbg904] {
    font-size: 0.6rem;
    color: #888;
}

.square-winnings-bottom[b-s3chmbg904] {
    text-align: center;
}

.winnings-pill[b-s3chmbg904] {
    font-size: 0.6rem;
    color: white;
    background-color: #2e7d32;
    font-weight: bold;
    padding: 1px 5px;
    border-radius: 8px;
}

.square-owner[b-s3chmbg904] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px;
}
/* /Components/Pages/Leaderboard.razor.rz.scp.css */
.leaderboard[b-f00cvjynp3] {
    margin-top: 16px;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1a3e;
    color: #fff;
    font-family: inherit;
}

.leaderboard-header[b-f00cvjynp3] {
    background: #0d2147;
    text-align: center;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trophy[b-f00cvjynp3] {
    font-size: 1.8rem;
}

.leaderboard-table[b-f00cvjynp3] {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.leaderboard-table thead tr[b-f00cvjynp3] {
    background: #132c5e;
}

.leaderboard-table th[b-f00cvjynp3] {
    padding: 10px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8899bb;
    font-weight: 600;
    white-space: nowrap;
}

.leaderboard-table td[b-f00cvjynp3] {
    padding: 12px 14px;
    font-size: 0.95rem;
}

.leaderboard-table tbody tr:nth-child(odd)[b-f00cvjynp3] {
    background: #0f2550;
}

.leaderboard-table tbody tr:nth-child(even)[b-f00cvjynp3] {
    background: #0b1d42;
}

.leaderboard-table tbody tr:hover[b-f00cvjynp3] {
    background: #1a3a6e;
}

.col-rank[b-f00cvjynp3] {
    text-align: center;
    width: 80px;
    font-weight: 700;
    color: #5b9aff;
}

.col-name[b-f00cvjynp3] {
    text-align: left;
    word-break: break-word;
}

.col-squares[b-f00cvjynp3],
.col-wins[b-f00cvjynp3] {
    text-align: center;
    width: 80px;
}

.col-amount[b-f00cvjynp3] {
    text-align: right;
    width: 120px;
    font-weight: 600;
    color: #4edf8a;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .leaderboard[b-f00cvjynp3] {
        border-radius: 0;
    }

    .leaderboard-header[b-f00cvjynp3] {
        padding: 14px 10px;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .trophy[b-f00cvjynp3] {
        font-size: 1.4rem;
    }

    .leaderboard-table th[b-f00cvjynp3] {
        padding: 8px 6px;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .leaderboard-table td[b-f00cvjynp3] {
        padding: 10px 6px;
        font-size: 0.82rem;
    }

    .col-rank[b-f00cvjynp3] {
        width: 36px;
    }

    .col-squares[b-f00cvjynp3],
    .col-wins[b-f00cvjynp3] {
        width: 40px;
    }

    .col-amount[b-f00cvjynp3] {
        width: auto;
    }
}
/* /Components/Pages/LeagueEdit.razor.rz.scp.css */
.form-floating[b-d7oetgni1b] {
    margin-bottom: 1rem;
}

.form-floating > .form-control[b-d7oetgni1b] {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > label[b-d7oetgni1b] {
    color: #6c757d;
}

.form-control:focus[b-d7oetgni1b] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control[b-d7oetgni1b] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.py-2[b-d7oetgni1b] {
    padding: 0.5rem 0;
}

.btn[b-d7oetgni1b] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.btn-primary[b-d7oetgni1b] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-d7oetgni1b] {
    color: #fff;
    background-color: #0056b3;
    border-color: #004085;
}

.btn-secondary[b-d7oetgni1b] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover[b-d7oetgni1b] {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.row[b-d7oetgni1b] {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.col-md-6[b-d7oetgni1b] {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.text-danger[b-d7oetgni1b] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .col-md-6[b-d7oetgni1b] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* /Components/Pages/LeagueMembers.razor.rz.scp.css */
/* /Components/Pages/LeagueOverview.razor.rz.scp.css */
/* /Components/Pages/SquareSelection.razor.rz.scp.css */
.board-scroll-container[b-b7d5p8a3t7] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.board-wrapper[b-b7d5p8a3t7] {
    display: inline-flex;
    flex-direction: column;
}

/* Header bar */
.board-header[b-b7d5p8a3t7] {
    background: #020024;
    border-radius: 4px 4px 0 0;
    padding: 10px 14px;
}

.board-header-inner[b-b7d5p8a3t7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.board-title[b-b7d5p8a3t7] {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.board-remaining[b-b7d5p8a3t7] {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.board-remaining-count[b-b7d5p8a3t7] {
    background: white;
    color: #020024;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 4px;
}

/* Sub-header */
.board-subheader[b-b7d5p8a3t7] {
    background-color: #d0d0d0;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
}

/* Side label + table row */
.board-with-side-label[b-b7d5p8a3t7] {
    display: flex;
}

/* Rotated side label */
.side-label[b-b7d5p8a3t7] {
    width: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d0d0d0;
}

.side-label span[b-b7d5p8a3t7] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Table */
.board-table[b-b7d5p8a3t7] {
    border-collapse: collapse;
    table-layout: fixed;
}

/* Digit header cells */
.digit-cell[b-b7d5p8a3t7] {
    background-color: #5a5a5a;
    color: white;
    text-align: center;
    vertical-align: middle;
    font-size: 2rem;
    font-weight: bold;
    border: 1px solid #999;
    padding: 2px;
}

.corner-cell[b-b7d5p8a3t7] {
    width: 60px;
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1.3;
}

.top-digit[b-b7d5p8a3t7] {
    height: 48px;
}

.side-digit[b-b7d5p8a3t7] {
    width: 60px;
}

/* Square cells */
.square-cell[b-b7d5p8a3t7] {
    border: 1px solid #bbb;
    padding: 0;
    vertical-align: top;
    height: 60px;
    width: 60px;
    max-width: 60px;
}

.square-free[b-b7d5p8a3t7] {
    background-color: #c8e6c9;
    cursor: pointer;
}

.square-selected[b-b7d5p8a3t7] {
    background-color: #f8bbd0;
    cursor: pointer;
}

.square-taken[b-b7d5p8a3t7] {
    background-color: #fff;
    opacity: 0.6;
    cursor: not-allowed;
}

.square-inner[b-b7d5p8a3t7] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2px 4px;
}

.square-top-row[b-b7d5p8a3t7] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1;
}

.square-number[b-b7d5p8a3t7] {
    font-size: 0.6rem;
    color: #888;
}

.square-owner[b-b7d5p8a3t7] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
