/* _content/Denga.Hangman.Web/Pages/About.razor.rz.scp.css */
.about[b-r7hrdj4ooe]{

}
/* _content/Denga.Hangman.Web/Pages/Components/GameStart.razor.rz.scp.css */
.number-selector[b-m2m3x12eh1] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 50px auto auto auto;
    max-width: 500px;
    padding: 10px;
    gap: 4px;
}

.row[b-m2m3x12eh1] {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    margin-bottom: 8px;
}

label[b-m2m3x12eh1] {
    font-size: 24px;
    margin-right: 8px;
}

input[b-m2m3x12eh1] {
    font-size: 24px;
}

button[b-m2m3x12eh1] {
    min-width: 30%;
    flex: 1 1 auto;
}

p[b-m2m3x12eh1] {
    flex: 1 1 auto;
    text-align: center;
}

.header[b-m2m3x12eh1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.title[b-m2m3x12eh1] {
    flex: 1 1 auto;
    text-align: center;
    font-size: 36px;
    margin-bottom: 8px;
}

.executioner[b-m2m3x12eh1] {
    background-image: url('/img/executioner2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    width: 290px;
    height: 290px;
    /* you need to match the shadow color to your background or image border for the desired effect*/
    box-shadow: 0 0 8px 8px white inset;
}
/* _content/Denga.Hangman.Web/Pages/Components/HangmanGuess.razor.rz.scp.css */
#current-guess[b-hocexydnb4] {
    display: flex;
    justify-content: space-around;
    font-size: 24px;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
}

.speech-bubble[b-hocexydnb4] {
    position: relative;
    border-radius: .4em;
    border: solid 1px black;
    padding: 8px;
    word-wrap: break-word;
}

    .speech-bubble[b-hocexydnb4]:after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-right-color: #000000;
        border-left: 0;
        border-bottom: 0;
        margin-top: -10px;
        margin-left: -20px;
    }

.executioner[b-hocexydnb4] {
    background-image: url('/img/executioner3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    flex: 0 0 100px;
    height: 100px;
    /* you need to match the shadow color to your background or image border for the desired effect*/
    box-shadow: 0 0 4px 4px white inset;
}
/* _content/Denga.Hangman.Web/Pages/Components/HangmanImage.razor.rz.scp.css */
img[b-y1h1cbe4v6] {
    width: 100%;
    max-width:300px;
}
/* _content/Denga.Hangman.Web/Pages/Components/HangmanLetter.razor.rz.scp.css */
.letter-button[b-gm1d1m3anb] {
    min-width:8px;
    flex:0 1 50px;
    font-size: 28px;
    text-align: center;
    height: 50px;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: inherit;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom: solid 4px black;
}

.letter-button:disabled[b-gm1d1m3anb]{
    color:dimgray;
}

.number[b-gm1d1m3anb] {
    color: lightgray;
    font-size: 20px;
}
/* _content/Denga.Hangman.Web/Pages/Game.razor.rz.scp.css */
.game[b-zh1wow0rxm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 16px;
    width: 100%;
}

#guessing-screen[b-zh1wow0rxm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.start-over[b-zh1wow0rxm] {
    margin-top: 16px;
    color: gray;
    border-color: gray;
}

#guess-letters[b-zh1wow0rxm] {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.given-answer[b-zh1wow0rxm] {
    height: 36px;
    width: 300px;
    font-size: 24px;
}
.previous-guess[b-zh1wow0rxm] {
    font-size: 32px;
    margin-right: 8px;
    text-decoration: underline;
    text-underline-offset: -8px;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
}
/* _content/Denga.Hangman.Web/Pages/Gamelog.razor.rz.scp.css */
.data[b-j6vc1lqbou]{
   flex: 1 1 auto;
}

table[b-j6vc1lqbou]{
    width:100%;
   border-spacing:8px;
}


tr[b-j6vc1lqbou]{
    text-align:center;
}
/* _content/Denga.Hangman.Web/Shared/MainLayout.razor.rz.scp.css */
.page[b-glo48u4tn7] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main[b-glo48u4tn7] {
    flex: 1 1 500px;
    align-items: center;
    justify-content: stretch;
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.nav[b-glo48u4tn7] {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: solid 1px black;
}

a[b-glo48u4tn7]{
    color:black;
    text-decoration:none;
}
a:hover[b-glo48u4tn7]{
    text-decoration:underline;
}
