.word-counter-tool {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.word-counter-tool h2 {
    text-align: center;
    color: #1F7295;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

#word-counter-input {
    width: 100%;
    height: 200px;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

#word-counter-input:focus {
    border-color: #1F7295;
    outline: none;
}

.word-counter-results {
    margin-top: 25px;
    font-size: 18px;
    color: #555;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.word-counter-results p {
    margin: 0;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    font-weight: 500;
    color: #333;
}

.word-counter-results span {
    display: block;
    font-size: 24px;
    color: #1F7295;
    font-weight: 700;
    margin-top: 5px;
}