/* ══════════════════════════════════════════════════════════════════════════
   LEADER TRACKER — WAR ROOM DARK THEME
   ══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --lr-bg-deepest: #060a13;
    --lr-bg-deep: #0a0f1a;
    --lr-bg-panel: #0f1520;
    --lr-bg-card: #141c2b;
    --lr-bg-card-hover: #1a2436;
    --lr-bg-elevated: #1e2a3d;
    --lr-border-subtle: rgba(255,255,255,0.06);
    --lr-border-medium: rgba(255,255,255,0.1);
    --lr-text-primary: #e8ecf2;
    --lr-text-secondary: #8a95a8;
    --lr-text-muted: #566275;
    --lr-accent-red: #ef4444;
    --lr-accent-red-glow: rgba(239,68,68,0.3);
    --lr-accent-amber: #f59e0b;
    --lr-accent-amber-glow: rgba(245,158,11,0.25);
    --lr-accent-green: #22c55e;
    --lr-accent-cyan: #06b6d4;
    --lr-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes lr-pulse-amber { 0%,100%{opacity:1} 50%{opacity:0.6} }
@keyframes lr-pulse-red { 0%,100%{box-shadow:0 0 0 0 var(--lr-accent-red-glow)} 50%{box-shadow:0 0 20px 4px var(--lr-accent-red-glow)} }
@keyframes lr-glow-amber { 0%,100%{text-shadow:0 0 8px var(--lr-accent-amber-glow)} 50%{text-shadow:0 0 20px var(--lr-accent-amber-glow)} }
@keyframes lr-fade-in-up { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ── Page Container ────────────────────────────────────── */
.leaders-page {
    background: var(--lr-bg-deepest);
    color: var(--lr-text-primary);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body:has(.leaders-page) {
    background: var(--lr-bg-deepest);
}

body:has(.leaders-page) main {
    max-width: 100%;
    padding: 0;
    background: var(--lr-bg-deepest);
}

/* Override any light-theme nav/header for this page */
body:has(.leaders-page) header,
body:has(.leaders-page) nav {
    background: var(--lr-bg-deep) !important;
    border-color: var(--lr-border-subtle) !important;
}

/* ── Loading State ─────────────────────────────────────── */
.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--lr-text-muted);
    font-family: var(--lr-font-mono);
    font-size: 0.82rem;
}

.loading-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--lr-accent-cyan);
    border-radius: 50%;
    animation: lr-pulse-amber 1.5s infinite;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO — MAP LEFT + STATS/DIGEST RIGHT
   ══════════════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(180deg, var(--lr-bg-deep) 0%, var(--lr-bg-deepest) 100%);
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(6,182,212,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Map column */
.hero-map-col {
    position: relative;
}

.leaders-page .map-container {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
}

#leaders-map svg {
    max-width: 100%;
    height: auto;
}

.map-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--lr-text-muted);
    font-family: var(--lr-font-mono);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lg-normal { background: var(--lr-accent-green); box-shadow: 0 0 6px rgba(34,197,94,0.4); }
.lg-absent { background: var(--lr-accent-amber); box-shadow: 0 0 6px rgba(245,158,11,0.4); }
.lg-fallen { background: var(--lr-accent-red); box-shadow: 0 0 6px rgba(239,68,68,0.4); }
.lg-nodata { background: rgba(255,255,255,0.15); }

/* Map tooltip (dark version) */
.map-tooltip {
    position: absolute;
    background: var(--lr-bg-elevated);
    border: 1px solid var(--lr-border-medium);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    line-height: 1.6;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: 1000;
    min-width: 180px;
    color: var(--lr-text-primary);
}

.tooltip-province {
    font-weight: 600;
    color: var(--lr-text-primary);
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.tooltip-line {
    color: var(--lr-text-secondary);
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tooltip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Map province colors (dark bg) */
.map-province {
    transition: all 0.15s ease;
}

.map-province:hover {
    filter: brightness(1.3);
}

/* Right column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--lr-font-mono);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-tracked { color: var(--lr-text-primary); }
.stat-missing { color: var(--lr-accent-amber); animation: lr-glow-amber 3s ease-in-out infinite; }
.stat-fallen { color: var(--lr-accent-red); }
.stat-normal { color: var(--lr-accent-green); }

.stat-label {
    font-family: var(--lr-font-mono);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lr-text-muted);
    margin-top: 6px;
}

/* Digest rows */
.hero-digest-title {
    font-family: var(--lr-font-mono);
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lr-text-muted);
    margin-bottom: 10px;
}

.digest-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    margin-bottom: 6px;
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border-subtle);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.digest-row:hover {
    background: var(--lr-bg-card-hover);
    border-color: var(--lr-border-medium);
}

.digest-row.type-absent { border-left: 3px solid var(--lr-accent-amber); }
.digest-row.type-fallen { border-left: 3px solid var(--lr-accent-red); }

.digest-days {
    font-family: var(--lr-font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    min-width: 50px;
    text-align: center;
    line-height: 1;
}

.digest-days.amber { color: var(--lr-accent-amber); }
.digest-days.red { color: var(--lr-accent-red); }

.digest-days-unit {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--lr-text-muted);
    display: block;
    margin-top: 2px;
}

.digest-info { flex: 1; min-width: 0; }

.digest-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lr-text-primary);
}

.digest-name .zh {
    color: var(--lr-text-muted);
    font-weight: 400;
    margin-left: 6px;
    font-size: 0.78rem;
}

.digest-pos {
    font-size: 0.72rem;
    color: var(--lr-text-secondary);
}

.digest-badge {
    font-family: var(--lr-font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    flex-shrink: 0;
}

.badge-absent {
    color: var(--lr-accent-amber);
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.2);
}

.badge-fallen {
    color: var(--lr-accent-red);
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
}

/* ══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
   ══════════════════════════════════════════════════════════════════════════ */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

.section {
    margin-bottom: 56px;
}

.section:first-child {
    margin-top: 48px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lr-border-subtle);
}

.section-icon {
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--lr-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lr-text-secondary);
}

.section-count {
    font-family: var(--lr-font-mono);
    font-size: 0.68rem;
    color: var(--lr-text-muted);
    background: var(--lr-bg-elevated);
    padding: 2px 10px;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ALERT CARDS
   ══════════════════════════════════════════════════════════════════════════ */

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}

.no-signals {
    font-size: 0.88rem;
    color: var(--lr-text-muted);
    padding: 32px;
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border-subtle);
    border-radius: 8px;
    text-align: center;
    grid-column: 1 / -1;
}

.alert-card {
    background: var(--lr-bg-card);
    border: 1px solid var(--lr-border-subtle);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: lr-fade-in-up 0.4s ease-out backwards;
}

.alert-card:nth-child(1) { animation-delay: 0s; }
.alert-card:nth-child(2) { animation-delay: 0.08s; }
.alert-card:nth-child(3) { animation-delay: 0.16s; }
.alert-card:nth-child(4) { animation-delay: 0.24s; }
.alert-card:nth-child(5) { animation-delay: 0.32s; }
.alert-card:nth-child(6) { animation-delay: 0.40s; }

.alert-card:hover {
    background: var(--lr-bg-card-hover);
    border-color: var(--lr-border-medium);
    transform: translateY(-2px);
}

.alert-card.type-absent {
    border-left: 3px solid var(--lr-accent-amber);
}

.alert-card.type-absent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,158,11,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.alert-card.type-fallen {
    border-left: 3px solid var(--lr-accent-red);
    animation: lr-pulse-red 4s ease-in-out infinite;
}

.alert-card.type-fallen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239,68,68,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.alert-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.alert-badge {
    font-family: var(--lr-font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 3px;
}

.alert-days {
    font-family: var(--lr-font-mono);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--lr-accent-amber);
    text-shadow: 0 0 30px var(--lr-accent-amber-glow);
}

.alert-days-label {
    font-family: var(--lr-font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lr-text-muted);
    margin-top: 2px;
}

.alert-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lr-text-primary);
    margin-bottom: 2px;
}

.alert-name-zh {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--lr-text-muted);
    margin-left: 8px;
}

.alert-position {
    font-size: 0.8rem;
    color: var(--lr-text-secondary);
    margin-bottom: 16px;
}

/* Sparkline */
.sparkline-container {
    margin-bottom: 14px;
}

.sparkline-label {
    font-family: var(--lr-font-mono);
    font-size: 0.62rem;
    color: var(--lr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sparkline {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 36px;
}

.spark-bar {
    flex: 1;
    min-width: 4px;
    border-radius: 1px 1px 0 0;
    transition: all 0.15s;
}

.spark-bar.has-value { background: rgba(34,197,94,0.5); }
.spark-bar.zero { background: rgba(239,68,68,0.25); min-height: 2px; }
.spark-bar.recent-zero { background: rgba(239,68,68,0.5); min-height: 3px; animation: lr-pulse-amber 1.5s infinite; }

.sparkline-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.sparkline-axis span {
    font-family: var(--lr-font-mono);
    font-size: 0.56rem;
    color: var(--lr-text-muted);
}

.alert-meta {
    font-size: 0.75rem;
    color: var(--lr-text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    font-size: 0.7rem;
    width: 14px;
    text-align: center;
}

.alert-links {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--lr-border-subtle);
    display: flex;
    gap: 16px;
}

.alert-links a {
    font-family: var(--lr-font-mono);
    font-size: 0.7rem;
    color: var(--lr-accent-cyan);
    letter-spacing: 0.3px;
    text-decoration: none;
}

.alert-links a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════════════
   STATUS MATRIX — MULTI-COLUMN GRID
   ══════════════════════════════════════════════════════════════════════════ */

.matrix-panel {
    background: var(--lr-bg-panel);
    border: 1px solid var(--lr-border-subtle);
    border-radius: 8px;
    padding: 24px;
}

.matrix-group {
    margin-bottom: 28px;
}

.matrix-group:last-child {
    margin-bottom: 0;
}

.matrix-group-label {
    font-family: var(--lr-font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lr-text-muted);
    margin-bottom: 14px;
}

/* Horizontal row for PBSC / Military */
.matrix-row-horiz {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pbsc-cell {
    width: 48px;
    height: 42px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    border: 1px solid rgba(34,197,94,0.25);
    background: rgba(34,197,94,0.18);
    gap: 2px;
}

.pbsc-cell:hover {
    background: rgba(34,197,94,0.3);
    box-shadow: 0 0 12px rgba(34,197,94,0.2);
    transform: scale(1.08);
}

.pbsc-cell.s-absent {
    border-color: rgba(245,158,11,0.3);
    background: rgba(245,158,11,0.2);
}

.pbsc-cell.s-absent:hover {
    background: rgba(245,158,11,0.35);
    box-shadow: 0 0 12px rgba(245,158,11,0.3);
}

.pbsc-cell.s-fallen {
    border-color: rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.2);
    animation: lr-pulse-red 4s infinite;
}

.pbsc-cell.s-awaiting {
    border-color: rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.04);
}

.pbsc-label {
    font-family: var(--lr-font-mono);
    font-size: 0.56rem;
    color: rgba(255,255,255,0.5);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 44px;
    text-align: center;
}

.pbsc-day {
    font-family: var(--lr-font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
}

.pbsc-cell .pbsc-day { color: var(--lr-accent-green); }
.pbsc-cell.s-absent .pbsc-day { color: var(--lr-accent-amber); }
.pbsc-cell.s-fallen .pbsc-day { color: var(--lr-accent-red); }
.pbsc-cell.s-awaiting .pbsc-day { color: var(--lr-text-muted); }

/* Province grid — 4 columns */
.province-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 16px;
}

.prov-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background 0.15s;
}

.prov-item:hover {
    background: rgba(255,255,255,0.03);
}

.prov-name {
    font-family: var(--lr-font-mono);
    font-size: 0.7rem;
    color: var(--lr-text-muted);
    width: 95px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prov-cells {
    display: flex;
    gap: 4px;
}

.m-cell {
    width: 36px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    border: 1px solid transparent;
    gap: 1px;
}

.m-cell:hover {
    transform: scale(1.12);
    z-index: 10;
}

.m-cell.s-normal { background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.25); }
.m-cell.s-normal:hover { background: rgba(34,197,94,0.3); box-shadow: 0 0 12px rgba(34,197,94,0.2); }
.m-cell.s-absent { background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.3); }
.m-cell.s-absent:hover { background: rgba(245,158,11,0.35); box-shadow: 0 0 12px rgba(245,158,11,0.3); }
.m-cell.s-fallen { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.3); animation: lr-pulse-red 4s infinite; }
.m-cell.s-fallen:hover { background: rgba(239,68,68,0.35); }
.m-cell.s-awaiting { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }
.m-cell.s-empty { background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.06); cursor: default; }
.m-cell.s-empty:hover { transform: none; }

.cell-lbl {
    font-family: var(--lr-font-mono);
    font-size: 0.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    line-height: 1;
}

.cell-day {
    font-family: var(--lr-font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
}

.s-normal .cell-day { color: var(--lr-accent-green); }
.s-absent .cell-day { color: var(--lr-accent-amber); }
.s-fallen .cell-day { color: var(--lr-accent-red); }
.s-awaiting .cell-day { color: var(--lr-text-muted); }

/* ══════════════════════════════════════════════════════════════════════════
   FULL ROSTER TABLE
   ══════════════════════════════════════════════════════════════════════════ */

.roster-table {
    width: 100%;
    border-collapse: collapse;
}

.roster-table thead th {
    font-family: var(--lr-font-mono);
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lr-text-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--lr-border-medium);
    background: var(--lr-bg-panel);
}

.roster-table tbody tr {
    border-bottom: 1px solid var(--lr-border-subtle);
    transition: background 0.15s;
    cursor: pointer;
}

.roster-table tbody tr:hover {
    background: var(--lr-bg-card);
}

.roster-table td {
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--lr-text-secondary);
}

.roster-table td:first-child {
    color: var(--lr-text-primary);
    font-weight: 500;
}

.roster-name-zh {
    color: var(--lr-text-muted);
    font-size: 0.78rem;
    margin-left: 6px;
}

/* ══════════════════════════════════════════════════════════════════════════
   METHODOLOGY FOOTER
   ══════════════════════════════════════════════════════════════════════════ */

.methodology {
    background: var(--lr-bg-panel);
    border: 1px solid var(--lr-border-subtle);
    border-radius: 8px;
    padding: 24px;
    margin-top: 56px;
}

.methodology-title {
    font-family: var(--lr-font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lr-text-muted);
    margin-bottom: 12px;
}

.methodology p {
    font-size: 0.82rem;
    color: var(--lr-text-muted);
    line-height: 1.7;
    max-width: 700px;
}

/* ══════════════════════════════════════════════════════════════════════════
   TOOLTIP
   ══════════════════════════════════════════════════════════════════════════ */

.custom-tooltip {
    position: fixed;
    background: var(--lr-bg-elevated);
    border: 1px solid var(--lr-border-medium);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.78rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: 9999;
    display: none;
    max-width: 280px;
    color: var(--lr-text-primary);
}

.custom-tooltip .tt-name {
    font-weight: 600;
    color: var(--lr-text-primary);
    margin-bottom: 4px;
}

.custom-tooltip .tt-position {
    color: var(--lr-text-secondary);
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.custom-tooltip .tt-meta {
    font-family: var(--lr-font-mono);
    font-size: 0.66rem;
    color: var(--lr-text-muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-map-col {
        max-width: 300px;
        margin: 0 auto;
    }

    .province-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 20px 16px 28px;
    }

    .main-content {
        padding: 0 16px 60px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .province-grid {
        grid-template-columns: 1fr;
    }

    .prov-name {
        width: 80px;
        font-size: 0.62rem;
    }

    .m-cell {
        width: 30px;
        height: 26px;
    }
}
