.counter-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 24px; /* ✅ IMPORTANT */
}

.counter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.counter-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.counter-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.counter-label {
    font-size: 13px;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.counter-card.highlight {
    border-color: #16a34a;
    background: #eff6ff;
}

.counter-card.highlight .counter-value {
    color: #16a34a;
}

.tool-actions {
    clear: both;
    margin-top: 16px;
}

