/* 334: Empty-state for tomme liste-sider */
.lx-empty-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 48px 24px; gap: 16px;
    background: var(--lx-surface, #fff); border: 1px dashed var(--lx-border, rgba(0,0,0,.08));
    border-radius: 16px;
}
:root[data-theme="dark"] .lx-empty-state { background: #171717; border-color: rgba(255,255,255,.08); }
.lx-empty-illustration { width: 200px; height: 160px; opacity: .9; }
.lx-empty-title { margin: 0; font-size: 18px; font-weight: 600; }
.lx-empty-description { margin: 0; font-size: 14px; color: #737373; max-width: 32rem; line-height: 1.5; }
:root[data-theme="dark"] .lx-empty-description { color: #a3a3a3; }
.lx-empty-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; background: #8b5cf6; color: #fff; border-radius: 10px;
    font-size: 14px; font-weight: 600; text-decoration: none; transition: background 120ms;
}
.lx-empty-cta:hover { background: #7c3aed; }
