/* _content/LeaderboardService/Components/Button.razor.rz.scp.css */
.game-button[b-k7tm795nne] {
    --bs-btn-border-radius: 2rem;
    --bs-btn-border-width: 0;
}

.btn-primary.game-button[b-k7tm795nne] {
    --bs-btn-bg: var(--color-blue);
}

.btn-secondary.game-button[b-k7tm795nne] {
    --bs-btn-bg: var(--color-orange);
    --bs-btn-color: black;
}
/* _content/LeaderboardService/Components/FooterOutlet.razor.rz.scp.css */
.footer[b-4vhpz7wt6h] {
    --radius: 0.75rem;

    position: sticky;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: var(--color-orange-lighter);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 1rem;
    gap: 0.5rem;

    border-top-left-radius: var(--radius);   
    border-top-right-radius: var(--radius);   
}
/* _content/LeaderboardService/Components/HighscoreRow.razor.rz.scp.css */
.r[b-pj4cnrpoit] {
    --edge-padding: 0.5rem;

    display: grid;
    grid-column: 1/-1;
    grid-template-columns: subgrid;
    border-bottom: 1px solid #dadde6;

    padding: 0.5rem 1rem;
    gap: 1rem;
}

.r[attr-focused][b-pj4cnrpoit] {
    background-color: var(--color-orange-lighter);
}

.r > div[b-pj4cnrpoit] {
    align-self: center;
    justify-self: center;
}

    .r > div:nth-child(4n+1)[b-pj4cnrpoit] {
        grid-column: 1;
        color: var(--color-orange);
        font-weight: bold;
    }

    .r > div:nth-child(4n+2)[b-pj4cnrpoit] {
        grid-column: 2;
        font-size: 0.75em;
        justify-self: left;
    }

    .r > div:nth-child(4n+3)[b-pj4cnrpoit] {
        grid-column: 3;
    }

    .r > div:nth-child(4n+4)[b-pj4cnrpoit] {
        grid-column: 4;
        font-weight: bold;
    }
/* _content/LeaderboardService/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0vmvafdakg] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0vmvafdakg] {
    flex: 1;
}

.sidebar[b-0vmvafdakg] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0vmvafdakg] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-0vmvafdakg]  a, .top-row[b-0vmvafdakg]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-0vmvafdakg]  a:hover, .top-row[b-0vmvafdakg]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-0vmvafdakg]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-0vmvafdakg] {
        justify-content: space-between;
    }

    .top-row[b-0vmvafdakg]  a, .top-row[b-0vmvafdakg]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-0vmvafdakg] {
        flex-direction: row;
    }

    .sidebar[b-0vmvafdakg] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0vmvafdakg] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-0vmvafdakg]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-0vmvafdakg], article[b-0vmvafdakg] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-0vmvafdakg] {
    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-0vmvafdakg] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/LeaderboardService/Components/Pages/AddScore.razor.rz.scp.css */
.hs-form label[b-c6vzcsfqjt] {
}
/* _content/LeaderboardService/Components/Pages/Home.razor.rz.scp.css */
.highscore-grid[b-qdyrw54c90] {
    display: grid;
    grid-template-columns: 0fr 1fr 0fr 0fr;
    
    row-gap: 0rem;
    column-gap: 0.5rem;
}

/*
.highscore-grid > * {
    position: relative;
}

    .highscore-grid > *:nth-child(4n+1)::before,
    .highscore-grid > *:nth-child(4n+1)::after {
        background-color: black;
        content: '';
        position: absolute;
    }

    .highscore-grid > *:nth-child(4n+1)::after {
        inline-size: 100vw;
        block-size: 1px;
        inset-inline-start: 0;
        inset-block-start: -0.5rem;
    }
*/
/* _content/LeaderboardService/Components/Panel.razor.rz.scp.css */
.panel[b-o45ukd6ehx] {
    --radius: 3rem;

    padding: 1rem;

    background-color: #ffd1bd;
    
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}
/* _content/LeaderboardService/Components/RequiredStar.razor.rz.scp.css */
.required-star[b-8s0uoik8n5] {
    color: var(--bs-form-invalid-color)
}
/* _content/LeaderboardService/Components/Star.razor.rz.scp.css */
.star[b-2vpn446upz] {
    display: inline-block;

    aspect-ratio: 1/1;
    height: 100%;

    background-image: url("img/Star-empty.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

    .star.filled[b-2vpn446upz] {
        background-image: url("img/Star-filledin.svg");
    }
/* _content/LeaderboardService/Components/StarRating.razor.rz.scp.css */
.star-rating[b-mj4m8fpqhx] {
    display: flex;
    height: var(--height);
    gap: calc(var(--height) * 0.25);

    align-items: center;
    justify-content: center;
}
