.word-counter-tool {
    background-color: #FAF7F0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: none;
    height: 150px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
}

button:hover {
    background-color: #45a049;
}

.word-count-display {
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 600px) {
    textarea {
        height: 120px;
    }
}