/* Jeopardy Game Board Styles */
.jeopardy-board {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 30px auto;
    border: 4px solid #000;
    background-color: #000066;
    font-family: 'Arial Black', sans-serif;
}

.jeopardy-row {
    display: flex;
}

.jeopardy-cell {
    flex: 1;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #0000cc;
}

.jeopardy-header .jeopardy-cell {
    background-color: #000099;
    font-size: 24px;
}

.jeopardy-value.used {
    background-color: #333;
    color: #aaa;
    cursor: default;
}

/* Modal Styles */
.jeopardy-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #000;
    padding: 30px;
    z-index: 1001;
    width: 80%;
    max-width: 600px;
    border: 4px solid #0000cc;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.jeopardy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.jeopardy-modal .question {
    font-size: 22px;
    margin-bottom: 20px;
}

.jeopardy-modal .answer {
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
    color: #0000cc;
}

.jeopardy-modal button {
    background-color: #0000cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.jeopardy-modal button:hover {
    background-color: #000099;
}
