/* ============================================================
   empty-ext.css — global empty / no-data state utility classes
   Use .empty-ext as the container, with optional child classes
   and the .empty-ext-compact modifier for inline / tight spaces.
   ============================================================ */

.empty-ext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .empty-ext .empty-ext-icon {
        font-size: 38px;
        color: var(--trimble-color-gray-medium);
        margin-bottom: 14px;
    }

    .empty-ext .empty-ext-title {
        font-family: var(--font-family-roboto);
        font-size: 15px;
        font-weight: 600;
        color: var(--trimble-color-gray-dark);
        margin: 0 0 6px 0;
    }

    .empty-ext .empty-ext-description {
        font-family: var(--font-family-roboto);
        font-size: 13px;
        color: var(--trimble-color-gray-medium);
        margin: 0;
        width: 100%;
    }

    /* Accent icon colour — e.g. for informational / admin states */
    .empty-ext .empty-ext-icon-accent {
        color: var(--trimble-color-blue);
    }

/* ── Compact modifier — for inline / panel usage ──────────── */
.empty-ext-compact {
    padding: 16px 20px;
}

    .empty-ext-compact .empty-ext-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .empty-ext-compact .empty-ext-title {
        font-size: 13px;
    }

    .empty-ext-compact .empty-ext-description {
        font-size: 12px;
    }

/* ── Small modifier — for tight inline contexts ───────────── */
.empty-ext.small {
    padding: 16px;
}

    .empty-ext.small .empty-ext-icon {
        font-size: 24px;
    }

    .empty-ext.small .empty-ext-title {
        font-size: 14px;
    }

    .empty-ext.small .empty-ext-description {
        font-size: 12px;
    }

/* ── Ant Design Empty integration ─────────────────────────── */
.empty-ext.ant-empty {
    margin: 0;
}

    .empty-ext.ant-empty .ant-empty-image {
        height: auto;
        margin-bottom: 0;
        line-height: 1;
    }
