/* =====================================================================
   QA PORTAL KTG INDONESIA
   MAIN STYLESHEET
   Direplikasi dari Mockup_Portal_QA_compressed.pdf
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
    /* Brand / Sidebar */
    --navy-900: #0f1b3d;
    --navy-800: #15224a;
    --navy-700: #1c2c5a;
    --navy-600: #243769;
    --navy-border: #2a3768;

    /* Accent */
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;

    /* Semantic colors */
    --success-600: #16a34a;
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-700: #15803d;

    --danger-600: #dc2626;
    --danger-50: #fef2f2;
    --danger-100: #fee2e2;
    --danger-700: #b91c1c;

    --warning-600: #d97706;
    --warning-50: #fffbeb;
    --warning-100: #fef3c7;
    --warning-700: #b45309;

    --info-600: #0891b2;
    --info-50: #ecfeff;
    --info-100: #cffafe;

    --purple-600: #7c3aed;
    --purple-50: #f5f3ff;
    --purple-100: #ede9fe;

    --orange-600: #ea580c;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;

    /* Neutrals */
    --gray-25: #fafbfc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Layout */
    --sidebar-width: 260px;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 8px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 4px 16px rgba(15, 23, 42, 0.10);
    --shadow-dropdown: 0 10px 30px rgba(15, 23, 42, 0.14);
}

/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
    font-size: 14px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ---------------------------------------------------------------------
   3. APP SHELL (Sidebar + Header + Content)
   --------------------------------------------------------------------- */
.app-shell {
    display: flex;
    min-height: 100vh;
}

/* --- Sidebar --- */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #cbd5e1;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 20px 18px;
}

.sidebar-brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
    margin-right: 2px;
}

.sidebar-brand-text {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.3px;
}

.sidebar-brand-sub {
    font-size: 9.5px;
    color: #7c89b8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-top: 1px;
}

.sidebar-section-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #5d6b9c;
    text-transform: uppercase;
    padding: 16px 20px 6px;
}

.sidebar-nav {
    flex: 1;
    padding-bottom: 20px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 20px;
    margin: 1px 10px;
    border-radius: var(--radius-sm);
    color: #aab4d4;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sidebar-link.active {
    background: var(--blue-600);
    color: #fff;
    font-weight: 600;
}

.sidebar-link .icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 14px 20px;
    font-size: 11px;
    color: #4a5688;
    border-top: 1px solid var(--navy-border);
}

/* --- Header (Top Bar) --- */
.main-area {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.topbar {
    height: var(--header-height);
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-title h1 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
}

.topbar-title p {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 1px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-datetime {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
}

.topbar-notif {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    border: none;
}

.topbar-notif:hover {
    background: var(--gray-200);
}

.notif-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--danger-600);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.topbar-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.topbar-user-info p:first-child {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-900);
}

.topbar-user-info p:last-child {
    font-size: 11.5px;
    color: var(--gray-500);
}

.page-content {
    padding: 24px 28px 48px;
}

/* ---------------------------------------------------------------------
   4. CARDS
   --------------------------------------------------------------------- */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
}

.card-pad {
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.card-header h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--gray-800);
}

.card-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue-600);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* --- Metric Card (Stat Card) --- */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.metric-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.metric-icon.green { background: var(--success-50); color: var(--success-600); }
.metric-icon.orange { background: var(--orange-50); color: var(--orange-600); }
.metric-icon.purple { background: var(--purple-50); color: var(--purple-600); }
.metric-icon.red { background: var(--danger-50); color: var(--danger-600); }
.metric-icon.cyan { background: var(--info-50); color: var(--info-600); }

.metric-body {
    flex: 1;
    min-width: 0;
}

.metric-label {
    font-size: 12.5px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 3px;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.metric-sub {
    font-size: 11.5px;
    color: var(--gray-400);
    margin-top: 3px;
}

.metric-sub.up { color: var(--success-600); }
.metric-sub.down { color: var(--danger-600); }

/* ---------------------------------------------------------------------
   5. BADGES
   --------------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-success { background: var(--success-100); color: var(--success-700); }
.badge-danger  { background: var(--danger-100); color: var(--danger-700); }
.badge-warning { background: var(--warning-100); color: var(--warning-700); }
.badge-info    { background: var(--info-100); color: #0e7490; }
.badge-purple  { background: var(--purple-100); color: var(--purple-600); }
.badge-secondary { background: var(--gray-100); color: var(--gray-600); }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.dot-success { background: var(--success-600); }
.dot-danger { background: var(--danger-600); }
.dot-warning { background: var(--warning-600); }

/* ---------------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-600);
    color: #fff;
}
.btn-primary:hover { background: var(--blue-700); }

.btn-outline {
    background: #fff;
    border-color: var(--gray-300);
    color: var(--gray-700);
}
.btn-outline:hover { background: var(--gray-50); }

.btn-success {
    background: var(--success-600);
    color: #fff;
}
.btn-success:hover { background: var(--success-700); }

.btn-danger-outline {
    background: #fff;
    border-color: #fecaca;
    color: var(--danger-600);
}
.btn-danger-outline:hover { background: var(--danger-50); }

.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn-block { width: 100%; }

.btn .icon { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------
   7. FORMS
   --------------------------------------------------------------------- */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    color: var(--gray-800);
    background: #fff;
    transition: border-color 0.15s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px var(--blue-50);
}

.form-control-icon-wrap {
    position: relative;
}

.form-control-icon-wrap .form-control {
    padding-left: 38px;
}

.form-control-icon-wrap .icon-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    width: 17px;
    height: 17px;
}

.form-control-icon-wrap .icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    width: 17px;
    height: 17px;
    cursor: pointer;
    background: none;
    border: none;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-row {
    display: grid;
    gap: 16px;
}
.form-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.form-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.form-row.cols-5 { grid-template-columns: repeat(5, 1fr); }
.form-row.cols-6 { grid-template-columns: repeat(6, 1fr); }

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--gray-700);
}

.checkbox-wrap input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--blue-600);
}

/* ---------------------------------------------------------------------
   8. FILTER BAR
   --------------------------------------------------------------------- */
.filter-bar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.filter-bar .form-row {
    align-items: end;
}

.filter-actions {
    display: flex;
    gap: 8px;
}

/* ---------------------------------------------------------------------
   9. TABLES
   --------------------------------------------------------------------- */
.table-wrap {
    overflow-x: auto;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

table.data-table th {
    text-align: left;
    padding: 11px 16px;
    background: var(--gray-50);
    color: var(--gray-500);
    font-weight: 600;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
}

table.data-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    white-space: nowrap;
}

table.data-table tbody tr:hover {
    background: var(--gray-25);
}

table.data-table tbody tr:last-child td {
    border-bottom: none;
}

.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

/* --- Pagination --- */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--gray-100);
    font-size: 13px;
    color: var(--gray-500);
}

.pagination-pages {
    display: flex;
    gap: 4px;
}

.pagination-pages a, .pagination-pages span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.pagination-pages a:hover {
    background: var(--gray-100);
}

.pagination-pages .active {
    background: var(--blue-600);
    color: #fff;
}

/* ---------------------------------------------------------------------
   10. GRID LAYOUT UTILITIES
   --------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 20px;
}
.grid-2 { grid-template-columns: 2fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-main-side { grid-template-columns: 1fr 340px; }

@media (max-width: 1100px) {
    .grid-2, .grid-3, .grid-4, .grid-main-side {
        grid-template-columns: 1fr;
    }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }

/* ---------------------------------------------------------------------
   11. MODULE PICKER CARDS (Portal Home)
   --------------------------------------------------------------------- */
.module-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--blue-600);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.module-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    display: block;
}

.module-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-1px);
}

.module-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.module-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.module-card p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.45;
    margin-bottom: 10px;
}

.module-card-arrow {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue-600);
}

/* ---------------------------------------------------------------------
   12. WELCOME BANNER
   --------------------------------------------------------------------- */
.welcome-banner {
    background: linear-gradient(120deg, #eef2ff 0%, #e0e9fb 60%, #dbe6f7 100%);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.welcome-banner h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.welcome-banner p {
    font-size: 13.5px;
    color: var(--gray-600);
}

/* ---------------------------------------------------------------------
   13. ACTIVITY LIST
   --------------------------------------------------------------------- */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.activity-item:last-child { border-bottom: none; }

.activity-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.activity-text {
    font-size: 13px;
    color: var(--gray-700);
}

.activity-meta {
    font-size: 11.5px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ---------------------------------------------------------------------
   14. LOGIN PAGE
   --------------------------------------------------------------------- */
.login-page {
    display: flex;
    min-height: 100vh;
}

.login-side {
    flex: 1;
    background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: #fff;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.login-side-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0 14px;
    line-height: 1.2;
}

.login-feature-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.login-feature-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: #c7cfe8;
}

.login-feature-list .icon-box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-form-side {
    flex: 1;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-hover);
    padding: 40px;
    width: 100%;
    max-width: 460px;
}

.login-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.login-box h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.login-box > p {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 26px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--gray-400);
    font-size: 12px;
}
.login-divider::before, .login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.login-footnote {
    text-align: center;
    font-size: 11.5px;
    color: var(--gray-400);
    margin-top: 22px;
}

.login-alert {
    background: var(--danger-50);
    border: 1px solid var(--danger-100);
    color: var(--danger-700);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 18px;
}

/* ---------------------------------------------------------------------
   15. DETAIL / SIDE PANEL (CAPA, RCA, dsb)
   --------------------------------------------------------------------- */
.detail-panel-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13px;
}
.detail-panel-row:last-child { border-bottom: none; }
.detail-panel-row .label { color: var(--gray-500); }
.detail-panel-row .value { color: var(--gray-800); font-weight: 600; text-align: right; }

/* ---------------------------------------------------------------------
   16. STEP WIZARD
   --------------------------------------------------------------------- */
.step-wizard {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 18px 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.step-item.active .step-circle {
    background: var(--blue-600);
    color: #fff;
}

.step-item.done .step-circle {
    background: var(--success-600);
    color: #fff;
}

.step-label strong {
    display: block;
    font-size: 13px;
    color: var(--gray-800);
}
.step-label span {
    font-size: 11.5px;
    color: var(--gray-400);
}

.step-connector {
    flex: 0 0 40px;
    height: 1px;
    background: var(--gray-200);
    margin: 0 6px;
}

/* ---------------------------------------------------------------------
   17. PROGRESS BAR
   --------------------------------------------------------------------- */
.progress-bar-track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 999px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--success-600);
    border-radius: 999px;
}

/* ---------------------------------------------------------------------
   18. MISC UTILITIES
   --------------------------------------------------------------------- */
.text-muted { color: var(--gray-500); }
.text-success { color: var(--success-600); }
.text-danger { color: var(--danger-600); }
.text-warning { color: var(--warning-600); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray-400);
}

.breadcrumb-filter {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 14px;
}
.breadcrumb-filter b { color: var(--gray-600); }
