#typing-attack-container {
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    max-width: 100%;
}

#typingCanvas {
    border: 2px solid #222;
    background: linear-gradient(to bottom, #dbe9f4, #f5faff);
    width: 100%;
    max-width: 700px;
    height: auto;
}

#typingInput {
    margin-top: 10px;
    width: 90%;
    max-width: 800px;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #555;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

#typingStats {
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
    background: #3a86ff;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    word-wrap: break-word;
}

#typingStats h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

#typingStats p {
    margin: 5px 0;
    font-size: 18px;
}

@media (max-width: 600px) {
    #typingInput {
        font-size: 16px;
        padding: 10px;
    }
    #typingStats {
        font-size: 18px;
        padding: 12px;
    }
    #typingStats h2 {
        font-size: 20px;
    }
    #typingStats p {
        font-size: 16px;
    }
}
