/**
 * empty-list-state.css — Chunk 457
 * ---------------------------------
 * Styles for the reusable empty-list-state partial.
 * Provides friendly illustration + CTA for empty list views.
 *
 * Used by: src/Views/partials/empty-list-state.php
 * Scoped with .empty-list-state* classes to avoid conflicts.
 */

/* ── Container ── */
.empty-list-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    min-height: 200px;
}

/* Table-mode: remove cell padding to let the section breathe */
td.empty-list-state__cell {
    padding: 0;
    border: none;
}

/* ── Illustration badge ── */
.empty-list-state__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-surface-elevated, #f0f4f8);
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary, #6b7280);
}

.empty-list-state__illustration svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Typography ── */
.empty-list-state__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text, #1f2937);
    line-height: 1.4;
}

.empty-list-state__message {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary, #6b7280);
    line-height: 1.5;
    max-width: 360px;
}

/* ── CTA button ── */
.empty-list-state__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary, #2563eb);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
    cursor: pointer;
}

.empty-list-state__cta:hover {
    background: var(--color-primary-hover, #1d4ed8);
    text-decoration: none;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .empty-list-state {
        padding: 2rem 1rem;
    }

    .empty-list-state__illustration {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .empty-list-state__illustration svg {
        width: 24px;
        height: 24px;
    }

    .empty-list-state__title {
        font-size: 1rem;
    }
}
