
.verbal-memory-test-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.word-display {
    text-align: center;
    margin: 40px 0;
}

#word-container {
    font-size: 48px;
    font-weight: bold;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#progress-indicator {
    margin-top: 20px;
}

.recall-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.vmt-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.vmt-button:hover {
    background-color: #45a049;
}

.results-section {
    margin-top: 20px;
}

.correct-word {
    color: green;
}

.incorrect-word {
    color: red;
}

.missed-word {
    color: #999;
}
