/* Basic styling for the typing test container */
.typing-test-container {
    font-family: Arial, sans-serif;
}

.styled-select, .styled-textarea {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
}

.start-btn:hover {
    background: #218838 !important;
}

.results-table {
    margin-top: 20px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
}

.styled-table th, .styled-table td {
    padding: 10px;
    text-align: left;
}

/* Highlighting styles */
#typing-text {
    white-space: pre-wrap; /* Preserve spaces and line breaks */
    font-size: 18px;
    line-height: 1.6;
}

.correct {
    color: #28a745; /* Green for correct characters */
    font-weight: bold;
}

.incorrect {
    color: #dc3545; /* Red for incorrect characters */
    text-decoration: underline;
}