/* Fee Schedule Review Stylesheet */

/* Under Review Card styles */
.status-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 24px;
}
.status-icon-container {
    flex-shrink: 0;
}
.status-icon-circle-outer {
    width: 100px;
    height: 100px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}
.status-icon-circle-inner {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
.status-icon-circle-inner i {
    color: #0b5ed7;
}
.status-badge {
    background: #0d6efd;
    color: #ffffff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-block;
    text-transform: uppercase;
}
.status-card-title {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.status-card-desc {
    color: #64748b;
    line-height: 1.6;
}
.status-email {
    color: #0d6efd;
    font-weight: 600;
}
.fee-paid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 44px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    min-width: 240px;
    flex-shrink: 0;
}
.fee-paid-label {
    display: block;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}
.fee-paid-amount {
    display: block;
    font-weight: 700;
    color: #10b981;
}

/* Document cards */
.document-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}
.document-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.file-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.file-icon-pdf {
    color: #ef4444;
}
.file-icon-xlsx, .file-icon-xls, .file-icon-csv {
    color: #10b981;
}
.document-title {
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}
.document-format {
    color: #64748b;
}

/* Lookup Search Form styles */
.lookup-search-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 36px 24px;
}
.lookup-main-title {
    font-weight: 800;
    color: #0a1931;
}
.lookup-subtitle {
    color: #64748b;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.lookup-card-form {
    max-width: 1100px;
    margin: 0 auto;
}
.lookup-input {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
    font-weight: 500;
    color: #0f172a;
}
.lookup-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}
.lookup-submit-btn {
    background: #0a1931;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    padding: 11px 24px;
    transition: background 0.2s ease;
}
.lookup-submit-btn:hover {
    background: #112d53;
}
.lookup-security-note {
    color: #94a3b8;
}

/* Completed Report Result Styles */
.review-status-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.status-bar-completed-col {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: none !important;
}
.status-bar-completed-col.status-completed {
    color: #10b981 !important;
}
.status-bar-completed-col.status-negotiating {
    color: #3b82f6 !important;
}
.status-bar-check-icon {
    background: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}
.status-bar-completed-col.status-completed .status-bar-check-icon {
    color: #10b981;
}
.status-bar-completed-col.status-negotiating .status-bar-check-icon {
    color: #3b82f6;
}
.status-bar-completed-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}
.status-bar-details .status-detail-label {
    display: block;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}
.status-bar-details .status-detail-val {
    display: block;
    font-weight: 700;
    color: #0f172a;
}
.border-md-end {
    border-right: 1px solid #e2e8f0;
}

/* Report Banner Card */
.report-banner-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}
.report-banner-icon-container {
    flex-shrink: 0;
}
.report-banner-circle-outer {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-banner-circle-inner {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.report-banner-circle-inner i {
    color: #10b981;
}
.report-banner-label {
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.report-banner-title {
    font-weight: 800;
    color: #10b981;
    margin: 0;
}
.report-banner-desc {
    color: #475569;
    line-height: 1.5;
}

/* Metrics Blocks */
.metric-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.metric-icon-box {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.metric-title {
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.metric-value {
    font-weight: 800;
}

/* Report Table */
.report-table {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.report-table thead th {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 700;
    padding: 14px 16px;
}
.report-table tbody td {
    padding: 14px 16px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

/* Genie Recommendation Card */
.genie-recommendation-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}
.genie-rec-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utilities */
.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .border-md-end {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 12px;
    }
    .fee-paid-card {
        width: 100%;
        min-width: unset;
    }
}
.otp-digit-input {
    width: 45px;
    height: 50px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}
.otp-digit-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}
.disabled-link {
    pointer-events: none;
    cursor: default;
    color: #94a3b8 !important;
}
.enabled-link {
    pointer-events: auto;
    cursor: pointer;
    color: #0d6efd !important;
}

/* Premium Typography & Design Calibration */
.fs-page-wrapper {
    font-family: 'Outfit', 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background: #fafaf9; /* Warm off-white background */
    min-height: 100dvh;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Lookup Search Container - Premium Refined Card */
.lookup-search-container {
    background: #ffffff;
    border: 1px solid #e7e5e4;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto;
}

.lookup-main-title {
    font-weight: 700;
    color: #1c1917;
    letter-spacing: -0.03em;
    font-size: 28px;
}

.lookup-subtitle {
    color: #78716c;
    font-weight: 400;
}

.lookup-input {
    border-radius: 12px;
    border: 1px solid #d6d3d1;
    padding: 12px 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #1c1917;
}

.lookup-input:focus {
    border-color: #f97316; /* Amber Accent */
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.lookup-submit-btn {
    background: #1c1917; /* Slate Off-Black */
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
}

.lookup-submit-btn:hover {
    background: #2e2a28;
    transform: translateY(-1px);
}

.lookup-submit-btn:active {
    transform: translateY(1px);
}

/* Status Bar & Details Badge */
.review-status-bar {
    background: #ffffff;
    border: 1px solid #e7e5e4;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px -5px rgba(0,0,0,0.02);
}

.status-bar-completed-text {
    font-weight: 700;
    color: #16a34a; /* Emerald */
}

.status-bar-check-icon {
    background: #dcfce7;
    color: #16a34a;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.status-detail-label {
    color: #a8a29e;
    font-weight: 500;
}

.status-detail-val {
    color: #1c1917;
    font-weight: 600;
}

/* Report Main Card Container */
.fs-section-card {
    background: #ffffff;
    border: 1px solid #e7e5e4;
    border-radius: 32px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.03);
    padding: 48px !important;
}

.report-section-main-title {
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #1c1917;
}

/* Recommendation Banner Card - Liquid Glass style */
.report-banner-card {
    background: #fafaf9;
    border: 1px solid #e7e5e4;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.report-banner-icon-container {
    background: #f5f5f4;
    border: 1px solid #e7e5e4;
    color: #1c1917;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-banner-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1c1917;
}

.report-banner-desc {
    color: #57534e;
    line-height: 1.6;
}

/* Metrics blocks - Asymmetric layouts */
.metric-block {
    background: #ffffff;
    border: 1px solid #e7e5e4;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
    border-color: #d6d3d1;
}

.metric-icon-box {
    background: #fafaf9;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    color: #1c1917 !important;
    border: 1px solid #e7e5e4;
}

.metric-icon-box.prod-data {
    background: #eff6ff !important;
    color: #3b82f6 !important;
    border-color: #bfdbfe !important;
}
.metric-icon-box.payer-vol {
    background: #f0fdf4 !important;
    color: #22c55e !important;
    border-color: #bbf7d0 !important;
}
.metric-icon-box.write-off {
    background: #fffbeb !important;
    color: #eab308 !important;
    border-color: #fef08a !important;
}
.metric-icon-box.top-codes {
    background: #e0e7ff !important;
    color: #6366f1 !important;
    border-color: #c7d2fe !important;
}
.metric-icon-box.nego-pot {
    background: #fff5f1 !important;
    color: #f97316 !important;
    border-color: #fed7aa !important;
}

.metric-title {
    color: #78716c;
    font-weight: 500;
}

.metric-value {
    font-weight: 700;
    color: #1c1917 !important;
}

/* Findings Table - Minimalist UI */
.report-table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.report-table thead th {
    background: #fafaf9;
    border: none;
    color: #78716c;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 8px;
}

.report-table tbody tr {
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.report-table tbody tr:hover {
    background: #fafaf9;
}

.report-table tbody td {
    padding: 16px 20px;
    border-top: 1px solid #f5f5f4;
    border-bottom: 1px solid #f5f5f4;
    color: #44403c;
}

.report-table tbody tr td:first-child {
    border-left: 1px solid #f5f5f4;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.report-table tbody tr td:last-child {
    border-right: 1px solid #f5f5f4;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Genie Recommendation Card */
.genie-recommendation-card {
    background: #ffffffff; /* Dark Tech Premium */
    border-radius: 24px;
    padding: 32px !important;
    color: #1c1917;
    border: 1px solid #2e2a28;
}

.genie-recommendation-card h5 {
    color: #1c1917 !important;
    font-weight: 700;
}

.genie-recommendation-card p {
    color: #1c1917 !important;
}

.genie-rec-icon-wrapper {
    background: #2e2a28;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.genie-recommendation-card .btn-primary {
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}



.genie-recommendation-card .btn-outline-dark {
   background: #2e2a28;
    color: #ffffff;
    border: 1px solid #44403c;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.genie-recommendation-card .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.858);
    border-color: #78716c;
    color: #2e2a28;
}

/* Mobile Responsive Media Queries */
@media (max-width: 767.98px) {
    .fs-page-wrapper {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .lookup-search-container {
        padding: 24px;
        border-radius: 16px;
    }
    
    .lookup-main-title {
        font-size: 22px;
    }
    
    .fs-section-card {
        padding: 20px !important;
        border-radius: 20px;
    }
    
    .report-section-main-title {
        font-size: 24px;
    }
    
    .report-banner-card {
        padding: 20px;
    }
    
    .report-banner-icon-container {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    
    .metric-block {
        padding: 14px 10px;
    }
    
    .metric-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    
    .metric-title {
        font-size: 10px !important;
    }
    
    .metric-value {
        font-size: 14px !important;
    }
    
    .genie-recommendation-card {
        padding: 20px !important;
        border-radius: 16px;
    }
    
    .genie-rec-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .genie-recommendation-card h5 {
        font-size: 16px;
    }
    
    .genie-recommendation-card p {
        font-size: 12px;
    }
}

/* Negotiation Timeline Component Styles */
.timeline-stepper-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 100%;
}
.timeline-stepper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.timeline-insurance-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.timeline-insurance-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f5f3ff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: #7c3aed;
}
.timeline-insurance-label, .timeline-status-label {
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}
.timeline-status-label {
    display: block;
    margin-bottom: 4px;
    text-align: right;
}
.timeline-insurance-name {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.timeline-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 32px;
    border-left: 2px solid #e2e8f0;
    margin-left: 12px;
    margin-top: 10px;
}

/* Individual Stepper Nodes */
.timeline-step-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 24px;
    text-align: left;
}
.timeline-step-node {
    position: absolute;
    left: -43px;
    top: 0px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-step-node.completed {
    background: #22c55e;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #22c55e;
    color: #ffffff;
}
.timeline-step-node.active {
    background: #ffffff;
    border: 3px solid #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.timeline-step-node.pending {
    left: -41px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
}
.timeline-step-label.completed {
    color: #334155;
    font-weight: 600;
}
.timeline-step-label.active {
    color: #0f172a;
    font-weight: 700;
}
.timeline-step-label.pending {
    color: #94a3b8;
    font-weight: 500;
}
.timeline-step-date.completed {
    color: #64748b;
    font-weight: 500;
}
.timeline-step-date.active {
    color: #1d4ed8;
    font-weight: 600;
}
.timeline-step-date.pending {
    color: #cbd5e1;
}

/* Sidebar & Cards */
.timeline-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}
.timeline-summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.timeline-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.timeline-summary-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f5f3ff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    flex-shrink: 0;
}
.timeline-summary-title {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.timeline-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.timeline-row-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.timeline-row-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.timeline-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.timeline-row-icon.stage {
    background: #f5f3ff;
    color: #7c3aed;
}
.timeline-row-icon.avg-time {
    background: #eff6ff;
    color: #3b82f6;
}
.timeline-row-icon.next-update {
    background: #f0fdf4;
    color: #22c55e;
}
.timeline-row-icon.status {
    background: #fff7ed;
    color: #f97316;
}
.timeline-row-label {
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}
.timeline-row-value {
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}
.timeline-row-desc {
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Help Card */
.timeline-help-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: auto;
}
.timeline-help-title {
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.timeline-help-desc {
    color: #64748b;
    margin: 0 0 16px 0;
}
.timeline-help-btn {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #475569;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.timeline-help-btn:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #cbd5e1;
}

/* Footer Note */
.timeline-footer-note {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    text-align: left;
}
.timeline-footer-note i {
    color: #94a3b8;
    flex-shrink: 0;
}

/* Timeline Status Badge */
.timeline-status-badge {
    border-radius: 9999px;
    padding: 4px 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.timeline-status-badge.completed {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.timeline-status-badge.in-progress {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
