/* app.css — vài tiện ích không có sẵn trong Tailwind CDN */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body { -webkit-font-smoothing: antialiased; }

/* Bảng dữ liệu rộng phải cuộn ngang trong khung riêng, không đẩy cả trang */
.tbl-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; white-space: nowrap; }
.tbl th {
    text-align: left; font-weight: 600; color: #6b7280; font-size: 11px;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 10px 12px; border-bottom: 1px solid #e5e7eb; background: #fafafb;
    position: sticky; top: 0;
}
.tbl td { padding: 10px 12px; border-bottom: 1px solid #f3f4f6; }
.tbl tbody tr:hover { background: #f9fafb; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }

.nav-item {
    display: flex; align-items: center; gap: 10px; padding: 8px 20px;
    color: #374151; border-left: 3px solid transparent; cursor: pointer;
}
.nav-item:hover { background: #f6f7fb; }
.nav-item.active { background: #eef2ff; color: #4f46e5; border-left-color: #4f46e5; font-weight: 600; }
.nav-group { padding: 14px 20px 6px; font-size: 10px; font-weight: 700; letter-spacing: .08em; color: #9ca3af; text-transform: uppercase; display: flex; align-items: center; }
.nav-badge {
    margin-left: 6px; font-size: 9px; font-weight: 700; letter-spacing: .04em;
    color: #047857; background: #ecfdf5; padding: 1px 5px; border-radius: 999px;
}

.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; }
.kpi-value { font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums; }

.badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.badge-ok { background: #ecfdf5; color: #047857; }
.badge-warn { background: #fffbeb; color: #b45309; }
.badge-bad { background: #fef2f2; color: #b91c1c; }
.badge-info { background: #eef2ff; color: #4338ca; }
.badge-mute { background: #f3f4f6; color: #4b5563; }

.pill-btn { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
    border: 1px solid #e5e7eb; background: transparent; color: inherit; cursor: pointer; }
.pill-btn.active { background: #2563eb; border-color: #2563eb; color: #fff; }

/* Thanh tiến độ trong bảng chiến dịch */
.bar { height: 6px; background: #f3f4f6; border-radius: 999px; overflow: hidden; min-width: 90px; }
.bar > i { display: block; height: 100%; background: #2563eb; border-radius: 999px; }

/* Icon + trạng thái "chưa có" trong sidebar */
.nav-ico { width: 16px; height: 16px; flex-shrink: 0; }
.nav-item.na { color: #9ca3af; cursor: pointer; }
.nav-item.na:hover { background: #fafafb; }
.nav-soon {
    font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
    color: #9ca3af; background: #f3f4f6; padding: 1px 5px; border-radius: 999px;
}
