.jeopardy-header {
    width: 100%;
    font-size: large;
    border-radius: 20px;
    padding:20px;
    border-width: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-style: outset;
    background-color: #32414f;
}
.toright{
    text-align: right;
    margin-bottom: 10px;
}

.jeopardy-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    width: 100%;
    bottom: 0px;
    padding: 5px;
}
#question-area{
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
}

.category, .value {
    background-color: #2a6f97;
    border: 2px solid #144d75;
    padding: 0px;
    text-align: center;
    font-size: medium;
    cursor: pointer;
    white-space: nowrap;        /* Prevent wrapping to a new line */
    overflow: hidden;           /* Hide the overflow content */
    text-overflow: ellipsis;    /* Add ellipsis (...) to indicate truncation */
}

.category {
    background-color: #2176ae;
    font-weight: bold;
}

.value:hover {
    background-color: #1d4e89;
}

.value.disabled {
    background-color: #555;
    cursor: not-allowed;
}

#question-area{
    font-size: large;
    text-align: center;
    width: 100%;
    vertical-align: middle;
}

.response-area {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%; 
    font-size: larger;
}
#input_submit{
    width: 100%;
    display: flex;
    align-self: flex-end;
}
#response-input1 {
    padding: 10px;
    font-size: 1em;
}

.thebutton {
    padding: 10px 10px;
    font-size: 1em;
    background-color: #2176ae;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.thebutton:hover {
    background-color: #1d4e89;
}
#theNextBtn{
    display: none;
    position: absolute;
    bottom:10px;
    right:10px;
}
.host-feedback {
    font-size: large;
    color: #ffdd57;
    text-align: center;
    margin-top: 20px;
}

.score-board {
    font-size: large;
    margin-bottom: 20px;
    color: #eaf10b;
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.theScore{
    border-radius: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-width: 1px;
    border-style: outset;
    background-color: #32414f;
}
.theCategory{
    color: #ffdd57;
    font-weight: bolder;
}
#jeopardy-container{
    position: absolute;
    top: 50px;
    bottom: 0px;
    right: 0px;
    left:0px;
    font-family: Arial, sans-serif;
    background-color: #3970a0;  
    color: white;
    display: none;
}
.theQuestion{
    color: #ffdd57;
    font-style: italic;
    font-size: medium;
    padding: 20px;
}
#Feedback-area{
    padding: 30px; 
    font-size: medium;
}

.modal-header {
    background-color: #4682b4;
    color: #fff;
    border-radius: 5px;
}
.modal-title{
    padding-left: 20px;
}

.modal-body {
    background-color: #f4f4f9;
    color: #333;
}

.modal-footer {
    background-color: #f4f4f9;
}
#question-content{
    display: none;
    position: absolute;
    bottom: 100px;
    left: 50%;
    max-width: 1024px;
    width: 80%;
    height: fit-content;
    margin-left: -40%;
    background-color: #555;
    padding: 30px;
    border-radius: 20px;
    border-style: ridge;
}
.PlayAnswers{
    width: fit-content;
    min-width: 200px;
}
#theExplanation{
    width: 100%;
    height: fit-content;
    font-size:medium;
    padding: 20px;
    font-weight: bold;
    text-align: center;
}
.colorGreen{
    color: Green;
}
.colorRed{
    color: red;
}
#theSelectnextBtn{
    display: none;
}
.modal-close{
    background-color: transparent;
    border-width: 0px;
    color: #f4f4f9;
}
#theJeopardyHelpBtn{
    display: none;
}