/* tools/text-content-tools/word-counter/style.css - Tool-specific styles */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive columns */
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-small);
    text-align: center;
}

.stat-item {
    padding: 15px;
    border: 1px solid var(--color-light-gray-2);
    border-radius: var(--border-radius-small);
    background-color: var(--color-light-gray);
    box-shadow: var(--shadow-x-small);
    transition: transform 0.2s ease-in-out;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-value {
    display: block;
    font-size: 2.2em;
    font-weight: bold;
    color: var(--color-teal);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: var(--color-dark-gray);
    font-weight: 500;
}

/* Adjust textarea for better usability */
#textInput {
    min-height: 200px; /* Ensure a decent initial height */
    font-family: 'Inter', sans-serif; /* Use consistent font */
}

/* Action button styling (reused from common styles) */
.tool-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}