/* Styles for the Punctuation Pro game */

#game-container {
    text-align: center;
    background-color: #ffffff;
    border: 3px solid #ff6961;
    border-radius: 8px;
    padding: 20px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#status-bar {
    display: flex;
    /* UPDATED to center the single item */
    justify-content: center; 
    font-size: 0.9em;
    color: #555;
    margin-bottom: 30px;
}

#sentence-display {
    background-color: #f9f1c7;
    border: 3px dashed #ff6961;
    padding: 30px;
    font-size: 1.5em; /* Larger font for readability */
    margin-bottom: 20px;
    min-height: 60px;
}

.instructions {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 25px;
}

#options-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

.option-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 2em; /* Big, clear punctuation */
    color: white;
    background-color: #ff6961;
    border: 2px solid #333;
    border-radius: 8px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    box-shadow: 0 4px #c45049;
    transition: all 0.1s ease;
}

.option-button:hover {
    background-color: #ff8b84;
}

.option-button:active {
    box-shadow: none;
    transform: translateY(4px);
}

/* Style for when buttons are disabled after an answer */
.option-button:disabled {
    background-color: #cccccc;
    box-shadow: 0 4px #999999;
    cursor: not-allowed;
}

#feedback-message {
    font-size: 1.2em;
    height: 30px;
    font-weight: bold;
    margin-top: 25px;
}

/* Class added via JavaScript for correct/incorrect answers */
.correct { color: #2e8b57; }
.incorrect { color: #d9534f; }
