body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-align: center;
    background-image: url("/static/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    background-position: center;
}
.guess-box{
    width: 4rem;
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}
.character-image{
    background-color: white;
}
button{
    padding: 10px;
}
.flex-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#guess-output-container{
    width: 100vw;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
#guess-candidate-container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    grid-auto-rows: 5rem;
    width: 80%;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 20rem;
    position: absolute;
    top: 100%;
    left: 10%;
    z-index: 1;
}
.current-candidate{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    background-color: rgb(158,188,183);
    border: 0;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0 0 0 1rem;
    cursor: pointer;
    color: black;
}
.loading-text{
    font-size: 1.5rem;
    background-color: rgb(187,247,238);
    padding: 1rem;
    border: 4px solid rgb(87,163,201);
    border-radius: 6px;
}
.other-candidate{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    background-color: rgb(187,247,238);
    border: 0;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0 0 0 1rem;
    cursor: pointer;
    color: black;
}
#guess-candidate-container button:hover{
    background-color: rgb(204, 222, 219);
}
p{
    margin: 0;
}
#guess{
    background-color: rgb(187,247,238);
    border: 4px solid rgb(87,163,201);
    padding: 1rem;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    justify-content: center;
    border-radius: 6px;
}
.state-box{
    background-color: rgb(187,247,238);
    border: 4px solid rgb(87,163,201);
    border-radius: 6px;
    margin: 20px 0 20px 0;
    box-sizing: border-box;
    width: 80%;
    padding-top: 1rem;
}
#state-text{
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}
#side-note{
    padding: 1rem;
    font-size: 0.8rem;
    text-align: left;
}
.game-container{
    width: 100%;
    max-width: 35rem;
    position: relative;
}
.submit-button{
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    border: 2px solid rgb(87,163,201);
    padding: 3px 5px;
    border-radius: 3px;
}
.send-icon{
    height: 30px;
}
#guess-input{
    width: 20rem;
    font-size: 1rem;
    border: 2px solid rgb(87,163,201);
    border-radius: 3px;
    background-color: transparent;
}
#guess-input:focus{
    border: 2px solid rgb(87,163,201);
    outline: none;
    box-shadow: none;
}
#guess-input-container{
    width: 80%;
}
.info-box{
    margin-top: 100px;
    background-color: rgb(187,247,238);
    border: 4px solid rgb(87,163,201);
    border-radius: 6px;
    max-width: 80%;
    text-align: left;
}
.info-title{
    background-color: gold;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
}
.info-content{
    padding: 1rem;
    line-height: 1.5rem;
}
.info-header{
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1rem 0;
}
.red-text{
    color: #d53633;
}
.green-text{
    color: #3da75e;
}
.info-property{
    font-weight: 700;
    padding: 0.5rem 0;
}
.win-box{
    background-color: #3da75e;
    border: 4px solid #24d475;
    border-radius: 6px;
}
.win-character{
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}
#win-image{
    height: 5rem;
}
#win-name{
    font-size: 1.4rem;
    font-weight: 700;
}
.win-text{
    font-weight: 700;
}
#win-order{
    font-weight: 700;
}
#win-count{
    font-weight: 700;
}
.win-title{
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.win-character{
    padding: 1rem 0 1.5rem 0;
}
.win-box{
    margin-top: 100px;
    padding: 1rem;
    max-width: 80%;
}
