/* Typing Test Specific Styles */
.typing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.passage-container {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
    line-height: 1.8;
    font-size: 18px;
}

.typing-input {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    border: 2px solid #ced4da;
    border-radius: 8px;
    resize: vertical;
}

.typing-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.timer-display {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
    text-align: center;
    margin-bottom: 20px;
}

.stats-display {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.stats-display p {
    margin: 5px 0;
    font-size: 16px;
}

.correct-char {
    background-color: #d4edda;
    color: #155724;
}

.incorrect-char {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .passage-container {
        font-size: 16px;
        padding: 15px;
    }
    
    .typing-input {
        font-size: 14px;
        min-height: 100px;
    }
}