/* ============================================================
   Mobile Users (subscribers) — scoped under .fx-mu-page.
   Prefix: fx-mu-. Visual style matches the rest of the dashboard.
   ============================================================ */

.fx-mu-page {
    width: 100%;
    max-width: none;
    margin: 0;
}

.fx-mu-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.fx-mu-title-block .fx-mu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-500);
    padding: 4px 12px;
    background: rgba(123, 82, 209, 0.10);
    border-radius: 100px;
    border: 1px solid rgba(123, 82, 209, 0.22);
    margin-bottom: 8px;
}
.fx-mu-title-block .fx-mu-kicker .fx-mu-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent, #FF8A3D);
    box-shadow: 0 0 8px var(--accent, #FF8A3D);
}

.fx-mu-title-block h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    color: var(--text);
    line-height: 1.2;
}
.fx-mu-title-block h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-500), var(--accent));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fx-mu-title-block p {
    margin: 6px 0 0;
    color: var(--text-dim);
    font-size: 14px;
}

.fx-mu-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.fx-mu-search.mud-input-control {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 560px;
    width: 380px;
}
.fx-mu-search .mud-input-outlined,
.fx-mu-search .mud-input-slot {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: var(--radius-md) !important;
}
.fx-mu-search .mud-input-outlined-border {
    border-color: rgba(56, 30, 114, 0.18) !important;
    border-radius: var(--radius-md) !important;
}
.fx-mu-search:focus-within .mud-input-outlined-border {
    border-color: var(--primary-400) !important;
    box-shadow: 0 0 0 4px rgba(123, 82, 209, 0.10);
}

.fx-mu-card {
    position: relative;
    background: var(--card-bg);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
            backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 4px;
}

.fx-mu-table { width: 100%; }
.fx-mu-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fx-mu-row-title { font-weight: 600; color: var(--text); }
.fx-mu-row-sub { color: var(--text-muted); font-size: 12px; }

.fx-mu-mono {
    font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, Consolas, monospace);
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.fx-mu-city-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
}
.fx-mu-city-basra {
    background: rgba(255, 138, 61, 0.14);
    color: var(--accent-deep, #E06B1F);
    border-color: rgba(224, 107, 31, 0.25);
}
.fx-mu-city-wasit {
    background: rgba(123, 82, 209, 0.14);
    color: var(--primary-500);
    border-color: rgba(123, 82, 209, 0.25);
}

.fx-mu-flags { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.fx-mu-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.fx-mu-flag-active { background: rgba(34,197,94,.12); color: #15803d; }
.fx-mu-flag-ext    { background: rgba(148,163,184,.18); color: var(--text-dim); }
.fx-mu-flag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
}

.fx-mu-empty {
    text-align: center;
    padding: 40px 16px;
    color: var(--text-dim);
}
.fx-mu-empty .mud-icon-root { color: var(--primary-300) !important; font-size: 56px !important; }
.fx-mu-empty-title {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text);
    font-size: 18px;
    margin: 8px 0 4px;
}
