
#typing-test-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#typing-test-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}
#test-text {
    background: #f8f9fa;
    padding: 15px;
    border: 1px dashed #ced4da;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
}
#typing-area {
    width: 100%;
    height: 120px;
    margin-top: 15px;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    resize: none;
    transition: border 0.3s ease;
}
#typing-area:focus {
    border-color: #5c7cfa;
    outline: none;
}
#start-button {
    display: block;
    margin: 20px auto;
    padding: 12px 30px;
    background-color: #5c7cfa;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#start-button:hover {
    background-color: #4c6ef5;
}
#timer, #results {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    color: #2f3542;
}
