/* Visum CRM — Customer Portal Styles (vcp-* prefix) */

/* Hide reCAPTCHA badge (Google allows this if disclaimer is shown in the form) */
.grecaptcha-badge { visibility: hidden !important; }

:root {
    --vcp-blue:    #134686;
    --vcp-blue-lt: #eff6ff;
    --vcp-blue-md: #dbeafe;
    --vcp-text:    #0f172a;
    --vcp-sub:     #475569;
    --vcp-muted:   #94a3b8;
    --vcp-border:  #e2e8f0;
    --vcp-surface: #ffffff;
    --vcp-bg:      #f8fafc;
    --vcp-r:       14px;
    --vcp-r-sm:    8px;
    --vcp-shadow:  0 1px 4px rgba(15,23,42,.06);
}

.vcp-wrap {
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    color: var(--vcp-text);
}

/* ── Login ──────────────────────────────────────────────────────────────── */
.vcp-login-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    background: var(--vcp-bg);
}

.vcp-login-card {
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15,23,42,.08);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
}

.vcp-login-logo { margin-bottom: 20px; }
.vcp-login-logo .vcp-logo-img { height: 32px; width: auto; }
.vcp-login-title { font-size: 22px; font-weight: 800; color: var(--vcp-text); margin: 0 0 6px; }
.vcp-login-sub   { font-size: 14px; color: var(--vcp-sub); margin: 0 0 28px; }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.vcp-alert {
    padding: 10px 14px;
    border-radius: var(--vcp-r-sm);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.vcp-alert-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
.vcp-alert-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }

/* ── Form fields ────────────────────────────────────────────────────────── */
.vcp-form .vcp-field { margin-bottom: 16px; }
.vcp-form .vcp-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
}
.vcp-form .vcp-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--vcp-border);
    border-radius: var(--vcp-r-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--vcp-text);
    background: var(--vcp-surface);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.vcp-form .vcp-field input:focus { border-color: var(--vcp-blue); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.vcp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: var(--vcp-r-sm);
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, opacity .15s;
    text-decoration: none;
    white-space: nowrap;
}
.vcp-btn:active { opacity: .85; }
.vcp-btn:disabled { opacity: .55; cursor: not-allowed; }

.vcp-btn-primary {
    background: var(--vcp-blue);
    color: #fff;
    padding: 11px 22px;
    font-size: 14px;
}
.vcp-btn-primary:hover { background: #1a5bae; color: #fff; }

.vcp-btn-outline {
    background: transparent;
    color: var(--vcp-sub);
    border: 1.5px solid var(--vcp-border);
    padding: 8px 16px;
    font-size: 13px;
}
.vcp-btn-outline:hover { border-color: #94a3b8; color: #334155; background: var(--vcp-bg); }

.vcp-btn-sm     { padding: 6px 12px; font-size: 12.5px; }
.vcp-btn-full   { width: 100%; margin-top: 8px; }
.vcp-btn-dl     { background: var(--vcp-blue-lt); color: var(--vcp-blue); border: 1px solid var(--vcp-blue-md); padding: 6px 14px; font-size: 12.5px; }
.vcp-btn-dl:hover { background: var(--vcp-blue-md); }
.vcp-btn-loader { display: none; }

/* ── Portal wrap ────────────────────────────────────────────────────────── */
.vcp-portal-wrap {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 20px 60px;
}

/* ── Portal header ──────────────────────────────────────────────────────── */
.vcp-portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    padding: 16px 20px;
    box-shadow: var(--vcp-shadow);
}

.vcp-portal-greeting { display: flex; flex-direction: column; gap: 2px; }
.vcp-greeting-name   { font-size: 17px; font-weight: 800; color: var(--vcp-text); }
.vcp-greeting-fin    { font-size: 12.5px; color: var(--vcp-muted); font-weight: 600; }

/* ── Sidebar layout ─────────────────────────────────────────────────────── */
.vcp-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
}

.vcp-sidebar {
    position: sticky;
    top: 90px;
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    overflow: hidden;
    box-shadow: var(--vcp-shadow);
}

.vcp-content { min-width: 0; }

/* ── Tabs → sidebar nav ─────────────────────────────────────────────────── */
.vcp-tabs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    border-bottom: none;
    overflow: visible;
    min-height: unset;
}
.vcp-tabs::-webkit-scrollbar { display: none; }

.vcp-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    border-radius: var(--vcp-r-sm);
    border-bottom: none;
    margin-bottom: 0;
    background: transparent;
    font-size: 13.5px;
    font-weight: 600;
    font-family: inherit;
    color: var(--vcp-sub);
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
    justify-content: flex-start;
    transition: background .15s, color .15s;
    flex-shrink: 0;
    width: 100%;
}
.vcp-tab:hover { background: var(--vcp-bg); color: var(--vcp-blue); }
.vcp-tab.active {
    background: var(--vcp-blue-lt);
    color: var(--vcp-blue);
    font-weight: 700;
}
.vcp-tab svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.vcp-tab.active svg { opacity: 1; }

.vcp-tab-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    background: #e2e8f0;
    color: #475569;
    flex-shrink: 0;
}
.vcp-tab-badge.vcp-badge-warn { background: #ffedd5; color: #c2410c; }

.vcp-tab-content { display: none; }
.vcp-tab-content.active { display: block; }

/* ── Section title ──────────────────────────────────────────────────────── */
.vcp-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--vcp-sub);
    margin-bottom: 14px;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.vcp-card {
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    box-shadow: var(--vcp-shadow);
    overflow: hidden;
    margin-bottom: 16px;
}

.vcp-card-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--vcp-border);
    background: var(--vcp-bg);
}

.vcp-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--vcp-text);
}

.vcp-card-body { padding: 16px 18px; }

/* ── Pipeline card ──────────────────────────────────────────────────────── */
.vcp-pipeline-card {
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    padding: 0;
    margin-bottom: 16px;
    box-shadow: var(--vcp-shadow);
    overflow: hidden;
}

.vcp-pl-app {
    padding: 18px 20px;
    border-bottom: 1px solid var(--vcp-border);
}
.vcp-pl-app:last-child { border-bottom: 0; }

.vcp-pl-app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.vcp-pl-app-name { font-size: 14px; font-weight: 700; color: var(--vcp-text); }

/* ── Pipeline steps (horizontal timeline) ───────────────────────────────── */
.vcp-pl-steps {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 0;
}
.vcp-pl-steps::-webkit-scrollbar { display: none; }

.vcp-pl-step-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    max-width: 88px;
    flex-shrink: 0;
}

.vcp-pl-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vcp-border);
    border: 2px solid var(--vcp-border);
    flex-shrink: 0;
    transition: background .2s;
    position: relative;
    z-index: 1;
}
.vcp-pl-dot.done    { background: #16a34a; border-color: #16a34a; }
.vcp-pl-dot.current { background: #fff; border-color: var(--vcp-blue); box-shadow: 0 0 0 3px #dbeafe; }

.vcp-pl-line {
    flex: 1;
    min-width: 12px;
    height: 2px;
    background: var(--vcp-border);
    margin-top: 13px;
    flex-shrink: 0;
}
.vcp-pl-line.done { background: #16a34a; }

.vcp-pl-step-lbl {
    font-size: 10px;
    color: var(--vcp-muted);
    text-align: center;
    margin-top: 7px;
    line-height: 1.3;
    word-break: break-word;
    max-width: 80px;
    font-weight: 600;
}
.vcp-pl-step-lbl.done    { color: #15803d; }
.vcp-pl-step-lbl.current { color: var(--vcp-blue); font-weight: 700; }

.vcp-pl-step-date {
    font-size: 9px;
    color: #16a34a;
    text-align: center;
    margin-top: 2px;
    font-weight: 700;
}

/* ── Badges ─────────────────────────────────────────────────────────────── */
.vcp-badge, .vcp-badge-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}
.vcp-badge-status { background: #f1f5f9; color: #475569; }
.vcp-badge-green  { background: #dcfce7; color: #15803d; }
.vcp-badge-red    { background: #fee2e2; color: #dc2626; }
.vcp-badge-yellow { background: #fef9c3; color: #a16207; }
.vcp-badge-gray   { background: #f1f5f9; color: #475569; }
.vcp-badge-warn   { background: #ffedd5; color: #c2410c; }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.vcp-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    background: var(--vcp-surface);
    box-shadow: var(--vcp-shadow);
}

.vcp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }

.vcp-table thead th {
    padding: 11px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--vcp-sub);
    background: var(--vcp-bg);
    border-bottom: 1px solid var(--vcp-border);
    white-space: nowrap;
}

.vcp-table tbody tr { border-bottom: 1px solid #f1f5f9; transition: background .12s; }
.vcp-table tbody tr:last-child { border-bottom: 0; }
.vcp-table tbody tr:hover { background: var(--vcp-bg); }
.vcp-table tbody td { padding: 12px 16px; color: #334155; vertical-align: middle; }

/* ── Empty state ────────────────────────────────────────────────────────── */
.vcp-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--vcp-muted);
    font-size: 14px;
    font-weight: 600;
}
.vcp-empty-icon { font-size: 32px; margin-bottom: 10px; opacity: .4; }

/* ── Contracts list ─────────────────────────────────────────────────────── */
.vcp-contracts-list { display: flex; flex-direction: column; gap: 12px; }

.vcp-contract-row {
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: var(--vcp-shadow);
}

.vcp-contract-info         { display: flex; flex-direction: column; gap: 3px; }
.vcp-contract-title        { font-size: 14px; font-weight: 700; color: var(--vcp-text); }
.vcp-contract-date         { font-size: 12px; color: var(--vcp-sub); }
.vcp-contract-signed-date  { font-size: 12px; color: #15803d; font-weight: 600; }
.vcp-contract-actions      { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.vcp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vcp-modal-box {
    background: var(--vcp-surface);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,23,42,.18);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vcp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--vcp-border);
    flex-shrink: 0;
}

.vcp-modal-ttl  { font-size: 17px; font-weight: 800; color: var(--vcp-text); margin: 0; }
.vcp-modal-close {
    width: 34px; height: 34px; border: 0;
    background: var(--vcp-bg); border-radius: var(--vcp-r-sm);
    cursor: pointer; font-size: 16px; color: var(--vcp-sub);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s; font-family: inherit;
}
.vcp-modal-close:hover { background: var(--vcp-border); }

.vcp-modal-body { padding: 20px 24px; overflow-y: auto; flex: 1; }

.vcp-contract-preview {
    font-size: 13px; line-height: 1.7; color: #334155;
    border: 1px solid var(--vcp-border); border-radius: var(--vcp-r-sm);
    padding: 16px; max-height: 220px; overflow-y: auto;
    background: var(--vcp-bg); margin-bottom: 20px;
}
.vcp-contract-loading { color: var(--vcp-muted); font-style: italic; font-size: 13px; }
.vcp-contract-body h3.vcp-contract-h { font-size: 15px; font-weight: 800; margin-bottom: 12px; }

.vcp-sig-section   { margin-bottom: 16px; }
.vcp-sig-label     { font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 8px; }
.vcp-sig-canvas-wrap {
    border: 2px dashed #cbd5e1; border-radius: 12px;
    background: var(--vcp-surface); cursor: crosshair; overflow: hidden;
}
#vcp-sig-canvas    { display: block; width: 100%; height: 150px; touch-action: none; }
.vcp-sig-actions   { margin-top: 8px; }

/* ── Country link ───────────────────────────────────────────────────────── */
.vcp-country-link { color: var(--vcp-blue); text-decoration: none; font-weight: 600; }
.vcp-country-link:hover { text-decoration: underline; }

/* ── Bonus card ─────────────────────────────────────────────────────────── */
.vcp-bonus-card {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(130deg, #134686 0%, #1a5bae 100%);
    border-radius: 16px; padding: 20px 22px;
    box-shadow: 0 6px 24px rgba(19,70,134,.22);
    color: #fff; position: relative; overflow: hidden;
}
.vcp-bonus-card::after {
    content: ''; position: absolute; right: -30px; bottom: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.vcp-bonus-left        { position: relative; z-index: 1; }
.vcp-bonus-label       { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.vcp-bonus-amount      { font-size: 28px; font-weight: 800; line-height: 1; color: #fff; margin-bottom: 8px; }
.vcp-bonus-currency    { font-size: 14px; font-weight: 600; opacity: .8; }
.vcp-bonus-rate        { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vcp-bonus-rate-badge  { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.vcp-bonus-rate-badge.standard { background: rgba(255,255,255,.15); color: #fff; }
.vcp-bonus-rate-badge.loyal    { background: #fbbf24; color: #78350f; }
.vcp-bonus-hint { font-size: 11.5px; color: rgba(255,255,255,.6); }
.vcp-bonus-icon { width: 48px; height: 48px; color: rgba(255,255,255,.4); flex-shrink: 0; position: relative; z-index: 1; }
.vcp-bonus-icon svg { width: 100%; height: 100%; }

/* ── ID cards row (now inside Məlumatlarım tab) ──────────────────────────── */
.vcp-id-bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
}
@media (max-width: 640px) { .vcp-id-bonus-row { grid-template-columns: 1fr; } }

/* ── Passport card ──────────────────────────────────────────────────────── */
.vcp-passports {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vcp-pp-card {
    font-family: 'Courier New', Courier, monospace;
    background: linear-gradient(145deg, #0f2a5e 0%, #1a3f8f 60%, #0f2a5e 100%);
    border-radius: 16px; padding: 20px 20px 14px;
    color: #e8f0fe; box-shadow: 0 8px 28px rgba(10,30,80,.25);
    position: relative; overflow: hidden;
}
.vcp-pp-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.vcp-pp-card.vcp-pp-main { background: linear-gradient(145deg, #0d2550 0%, #134686 60%, #0d2550 100%); }
.vcp-pp-top            { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vcp-pp-logo svg       { width: 32px; height: 32px; display: block; flex-shrink: 0; }
.vcp-pp-brand          { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: #bfdbfe; }
.vcp-pp-doc-type       { font-size: 9.5px; color: rgba(200,220,255,.55); margin-top: 2px; letter-spacing: .06em; }
.vcp-pp-name           { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: .04em; margin-bottom: 14px; line-height: 1.2; }
.vcp-pp-fields         { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px; margin-bottom: 14px; }
.vcp-pp-field          { display: flex; flex-direction: column; gap: 2px; }
.vcp-pp-lbl            { font-size: 9px; font-weight: 700; letter-spacing: .04em; color: rgba(147,197,253,.75); }
.vcp-pp-val            { font-size: 13px; font-weight: 700; color: #fff; }
.vcp-pp-mono           { font-family: 'Courier New', monospace; letter-spacing: .06em; font-size: 12.5px; }
.vcp-pp-exp-warn       { color: #fcd34d; }
.vcp-pp-exp-danger     { color: #f87171; }
.vcp-pp-mrz {
    border-top: 1px solid rgba(255,255,255,.12); padding-top: 10px;
    font-family: 'Courier New', monospace; font-size: 8px;
    color: rgba(200,220,255,.4); white-space: pre; overflow: hidden;
    text-overflow: ellipsis; line-height: 1.6; letter-spacing: .05em;
}

/* ── Məlumatlarım info grid ─────────────────────────────────────────────── */
.vcp-info-card {
    background: var(--vcp-surface);
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r);
    overflow: hidden;
    box-shadow: var(--vcp-shadow);
    margin-bottom: 16px;
}
.vcp-info-card-hd {
    padding: 13px 18px;
    border-bottom: 1px solid var(--vcp-border);
    background: var(--vcp-bg);
    font-size: 13px;
    font-weight: 700;
    color: var(--vcp-text);
}
.vcp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
@media (max-width: 520px) { .vcp-info-grid { grid-template-columns: 1fr; } }

.vcp-info-row {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.vcp-info-row:nth-child(odd)  { border-right: 1px solid #f1f5f9; }
.vcp-info-row:nth-last-child(-n+2) { border-bottom: 0; }
.vcp-info-lbl { font-size: 11.5px; font-weight: 600; color: var(--vcp-muted); }
.vcp-info-val { font-size: 13.5px; font-weight: 600; color: var(--vcp-text); }
.vcp-info-val.mono { font-family: 'Courier New', monospace; letter-spacing: .04em; }

/* ── Profile / Employment card ──────────────────────────────────────────── */
.vcp-profile-card {
    background: var(--vcp-surface); border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r); padding: 20px 22px; box-shadow: var(--vcp-shadow);
    margin-bottom: 16px;
}
.vcp-form-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .vcp-form-grid2 { grid-template-columns: 1fr; } }

/* ── Contract doc preview ───────────────────────────────────────────────── */
.vcp-contract-preview .vcp-cdoc { font-size: 10pt; line-height: 1.15; }
.vcp-contract-preview .vcp-cdoc .signatures { display: block; }
.vcp-contract-preview .vcp-cdoc .sig-block  { margin-bottom: 16px; }

/* ── Application info grid (inside pipeline cards) ─────────────────────── */
.vcp-app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0;
    border: 1px solid var(--vcp-border);
    border-radius: var(--vcp-r-sm);
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--vcp-surface);
}
.vcp-app-info-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
}
.vcp-app-info-row:last-child { border-bottom: 0; }
.vcp-app-info-lbl { font-size: 11px; font-weight: 600; color: var(--vcp-muted); }
.vcp-app-info-val { font-size: 13px; font-weight: 600; color: var(--vcp-text); }

/* ── Responsive: sidebar → top nav on mobile ────────────────────────────── */
@media (max-width: 700px) {
    .vcp-layout {
        grid-template-columns: 1fr;
    }
    .vcp-sidebar {
        position: static;
        border-radius: var(--vcp-r);
        overflow: hidden;
    }
    .vcp-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
        gap: 4px;
    }
    .vcp-tab {
        white-space: nowrap;
        flex-shrink: 0;
        width: auto;
        padding: 8px 14px;
    }
    .vcp-tab-badge { display: none; }
}
