/* Scoring list - side box */
.scored-words-box {
    width: 100%;
    max-width: 300px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    overflow-y: auto;
    order: 2;
}

.scoring-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.scoring-input-row input {
    flex: 1;
    min-width: 0;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.scoring-input-row #score {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.scored-words-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

#scoredWordsList {
    font-size: 14px;
}

.scored-word-item {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    text-transform: capitalize;
}

