/* lj-widget.css v1.1.0
   LeadJaw front-end visitor stats widget - default styles.
   All rules use the .lj-stat namespace and are intentionally lightweight.
   Override any of these in your theme CSS to match your design.
*/

/* Single stat counter */
.lj-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.lj-stat__number {
    display: block;
    font-size: 2.4em;
    font-weight: 700;
    color: currentColor;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.lj-stat__label {
    display: block;
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: 4px;
}

/* Block layout helper */
.lj-stat--block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Row layout helper - wrap multiple stats in a div.lj-stat-row */
.lj-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

/* Industry list */
.lj-stat[data-lj-type="industry"] {
    display: block;
    width: 100%;
}

.lj-stat__industry-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.lj-stat__industry-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95em;
    gap: 12px;
}

.lj-stat__industry-item:last-child {
    border-bottom: none;
}

.lj-stat__industry-name {
    flex: 1;
    color: currentColor;
}

.lj-stat__industry-count {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    opacity: 0.75;
    white-space: nowrap;
}

.lj-stat__industry-empty {
    font-size: 0.9em;
    opacity: 0.6;
    padding: 8px 0;
    list-style: none;
}
