/* ============================================================
   Customs Procedure Form Modal — premium overrides
   ============================================================ */

/* Hidden file input — opacity trick so .click() works in all browsers */
.cp-file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ── Drop Zone ──────────────────────────────────────────────── */
.cp-dropzone {
    position: relative;
}

.cp-dropzone-area {
    border: 2px dashed var(--outline);
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    text-align: center;
    background: var(--surface-dim);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.cp-dropzone-area:hover {
    border-color: var(--primary);
    background: var(--primary-surface);
}

.cp-dropzone-area.cp-dragover {
    border-color: var(--primary);
    border-width: 2px;
    background: var(--primary-hover);
}

.cp-dropzone.cp-has-files .cp-dropzone-area {
    border-style: solid;
    border-color: var(--success);
    background: var(--success-surface);
    min-height: auto;
    padding: 14px 20px;
}

/* Idle state (no files) */
.cp-dropzone-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cp-dropzone-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 4px;
}

.cp-dropzone-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--on-surface);
    margin: 0;
}

.cp-dropzone-hint {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--on-surface-variant);
}

/* Filled state (files selected) */
.cp-dropzone-filled {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--success);
}

.cp-dropzone-filled-icon {
    font-size: 20px;
    color: var(--success);
}

/* File list items */
.cp-dropzone-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.cp-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: var(--radius-sm);
    transition: box-shadow 0.15s ease;
}

.cp-file-item:hover {
    box-shadow: var(--elevation-1);
}

.cp-file-item-icon {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.cp-file-item-info {
    flex: 1;
    min-width: 0;
}

.cp-file-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--on-surface);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cp-file-item-size {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--on-surface-variant);
}

.cp-file-item-remove {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    color: var(--on-surface-variant);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
    font-size: 14px;
}

.cp-file-item-remove:hover {
    background: var(--error-surface);
    color: var(--error);
}

#customsProcedureFormModal .cb-modal-content {
    border-radius: var(--radius-md);
}

#customsProcedureFormModal .cb-input {
    border-radius: var(--radius-sm);
    height: 42px;
}

#customsProcedureFormModal textarea.cb-input {
    height: auto;
}

/* Footer: help button left-aligned, actions right-aligned */
#customsProcedureFormModal .cb-modal-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-help-trigger {
    color: var(--on-surface-variant);
    flex-shrink: 0;
}

.cp-help-trigger:hover,
.cp-help-trigger[aria-expanded="true"] {
    background: var(--primary-surface);
    color: var(--primary);
}

/* Compact help panel */
.cp-help-panel {
    background: var(--info-surface);
    border: 1px solid var(--info);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 16px;
}

.cp-help-panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--info);
    margin-bottom: 8px;
}

.cp-help-panel-header .material-symbols-outlined {
    font-size: 15px;
}

.cp-help-list {
    margin: 0;
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cp-help-list li {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--on-surface-variant);
    line-height: 1.4;
}

.cp-help-list li strong {
    color: var(--on-surface);
    font-weight: 600;
}

/* ============================================================
   Customer Portal — Shell (BusinessClientPortal)
   ============================================================ */

/* Shell: ocupa todo el espacio disponible en la columna flex */
.bcp-shell {
    min-height: 0;
    overflow: hidden;
}

/* ── Overrides de densidad para el portal del cliente ───────
   Reduce el espacio de .baw-root/.baw-banner y .cp-kpi-strip
   cuando están dentro del shell del portal, sin tocar los
   estilos globales que usan otros módulos.
   ─────────────────────────────────────────────────────────── */
.bcp-shell .baw-root {
    padding: 10px 24px;
    min-height: unset;
}

.bcp-shell .baw-banner {
    padding: 12px 20px;
    margin-bottom: 10px;
}

.bcp-shell .baw-greeting-text {
    font-size: 18px;
}

.bcp-shell .baw-subtitle {
    margin-bottom: 6px;
}

.bcp-shell .baw-chips-row,
.bcp-shell .baw-chips {
    margin-top: 0;
}

@media (max-width: 800px) {
    .bcp-shell .baw-root  { padding: 8px 12px; }
    .bcp-shell .baw-banner { padding: 10px 14px; }
    .bcp-shell customer-portal-kpi-strip { padding: 0 12px; }
}

/* ── Segmented tab bar (pill style) ─────────────────────────
   Patrón: contenedor neutro recessed + pills flotantes activos.
   ─────────────────────────────────────────────────────────── */
.bcp-tabs {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    margin: 8px 24px 0;
    background: var(--surface-container);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.bcp-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--on-surface-variant);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.bcp-tab .material-symbols-outlined {
    font-size: 16px;
    transition: color 0.18s ease;
}

.bcp-tab:hover:not(.bcp-tab--active) {
    color: var(--on-surface);
    background: rgba(0, 0, 0, 0.05);
}

.bcp-tab--active {
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.08);
}

.bcp-tab--active .material-symbols-outlined {
    color: var(--primary);
}

/* Dark mode */
[data-theme="dark"] .bcp-tabs {
    background: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .bcp-tab--active {
    background: var(--surface-container);
    box-shadow: 0 1px 3px rgba(0,0,0,0.30);
}
[data-theme="dark"] .bcp-tab:hover:not(.bcp-tab--active) {
    background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 800px) {
    .bcp-tabs { margin: 8px 12px 0; }
    .bcp-tab  { padding: 6px 14px; font-size: 12px; }
}

/* ── Línea separadora debajo del tab bar ─────────────────── */
.bcp-tabs-row {
    flex-shrink: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--outline-variant);
}

/* Área de contenido de los tabs y del detalle */
.bcp-content-area {
    min-height: 0;
    overflow-y: auto;
    padding: 16px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--outline) transparent;
}

.bcp-content-area::-webkit-scrollbar { width: 4px; }
.bcp-content-area::-webkit-scrollbar-track { background: transparent; }
.bcp-content-area::-webkit-scrollbar-thumb {
    background: var(--outline);
    border-radius: var(--radius-full);
}

/* ── Breadcrumb (estado detail) ──────────────────────────── */
.bcp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    border-bottom: 1px solid var(--outline-variant);
    flex-shrink: 0;
    background: var(--surface);
}

.bcp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: background 0.15s ease;
}

.bcp-back-btn:hover {
    background: var(--primary-hover);
}

.bcp-back-btn .material-symbols-outlined {
    font-size: 18px;
}

.bcp-breadcrumb-sep .material-symbols-outlined {
    font-size: 16px;
    color: var(--on-surface-variant);
    vertical-align: middle;
}

.bcp-breadcrumb-current {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface-variant);
}

/* Dark mode */
[data-theme="dark"] .bcp-breadcrumb {
    background: var(--surface);
    border-color: var(--outline);
}

@media (max-width: 800px) {
    .bcp-breadcrumb   { padding: 8px 12px; }
    .bcp-content-area { padding: 12px; }
    .cp-tab-bar       { padding: 0 12px !important; }
}

/* ── Animación de entrada para la vista de detalle ───────── */
/*   Simula navegación a nueva pantalla: entra desde la derecha
     como en apps móviles, dejando claro que hay una pantalla atrás. */
@keyframes bcp-page-enter {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bcp-detail {
    animation: bcp-page-enter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Tab bar: inherits cb-stats-tabs layout, overrides side padding */
.cp-tab-bar {
    flex-shrink: 0;
}

/* Content panel below the tab bar */
.cp-tab-content-panel {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    padding: 16px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--outline) transparent;
}

.cp-tab-content-panel::-webkit-scrollbar { width: 4px; }
.cp-tab-content-panel::-webkit-scrollbar-track { background: transparent; }
.cp-tab-content-panel::-webkit-scrollbar-thumb {
    background: var(--outline);
    border-radius: var(--radius-full);
}

/* Loading spinner inside the content panel */
.cp-tab-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.cp-tab-spinner {
    font-size: 32px;
    color: var(--primary);
    animation: cp-tab-spin 0.9s linear infinite;
}

@keyframes cp-tab-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 800px) {
    .cp-tab-bar { padding: 0 12px !important; }
    .cp-tab-content-panel { padding: 12px; }
}

/* ============================================================
   Customer Portal — Compact KPI Strip (cp-kpi- prefix)
   Single-row summary bar above the procedure list.
   ============================================================ */

/* Host element — matches baw-root horizontal padding so both align */
customer-portal-kpi-strip {
    display: block;
    padding: 0 24px;
}

@media (max-width: 800px) {
    customer-portal-kpi-strip {
        padding: 0 12px;
    }
}

.cp-kpi-strip {
    display: flex;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.cp-kpi-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    flex: 1;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid var(--outline-variant);
    min-width: 0;
}

.cp-kpi-stat:last-child {
    border-right: none;
}

.cp-kpi-stat:hover {
    background: var(--surface-container);
}

/* Alert variant — subtle left accent for "requires action" */
.cp-kpi-stat--alert {
    border-left: 3px solid var(--warning);
}

.cp-kpi-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-kpi-icon .material-symbols-outlined {
    font-size: 16px;
}

.cp-kpi-icon--info    { background: var(--info-surface);    color: var(--info); }
.cp-kpi-icon--success { background: var(--success-surface); color: var(--success); }
.cp-kpi-icon--warning { background: var(--warning-surface); color: #b45309; }
.cp-kpi-icon--neutral { background: var(--surface-dim);     color: var(--on-surface-variant); }
.cp-kpi-icon--primary { background: var(--primary-surface); color: var(--primary); }

/* ── Attention state ─────────────────────────────────────────
   3 layers of emphasis:
   1. Ping badge  — expanding ring + solid dot (top-right)
   2. Background wash — slow breathing tint on the cell
   3. Icon motion — shake (warning) / gentle pulse (others)
   ──────────────────────────────────────────────────────────── */

.cp-kpi-stat--attention {
    position: relative;
}

/* ── 1 · PING BADGE ────────────────────────────────────────── */
/* ::before = expanding ring  |  ::after = solid dot            */

.cp-kpi-stat--attention::before,
.cp-kpi-stat--attention::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 8px;
    border-radius: 50%;
    pointer-events: none;
}

.cp-kpi-stat--attention::before {
    width: 10px;
    height: 10px;
    animation: cp-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cp-kpi-stat--attention:has(.cp-kpi-icon--warning)::before { background: rgba(249, 171,   0, 0.6); }
.cp-kpi-stat--attention:has(.cp-kpi-icon--neutral)::before { background: rgba( 95,  99, 104, 0.5); animation-delay: 0.5s; }
.cp-kpi-stat--attention:has(.cp-kpi-icon--primary)::before { background: rgba( 26, 115, 232, 0.5); animation-delay: 1s; }

@keyframes cp-ping {
    0%        { transform: scale(1);   opacity: 0.8; }
    75%, 100% { transform: scale(2.4); opacity: 0;   }
}

.cp-kpi-stat--attention::after {
    width: 9px;
    height: 9px;
    top: 7.5px;
    right: 8.5px;
    border: 2px solid var(--surface);
}
.cp-kpi-stat--attention:has(.cp-kpi-icon--warning)::after { background: var(--warning); }
.cp-kpi-stat--attention:has(.cp-kpi-icon--neutral)::after { background: var(--on-surface-variant); }
.cp-kpi-stat--attention:has(.cp-kpi-icon--primary)::after { background: var(--primary); }

/* ── 2 · BACKGROUND WASH ───────────────────────────────────── */

.cp-kpi-stat--attention:has(.cp-kpi-icon--warning) {
    animation: cp-bg-warning 3s ease-in-out infinite;
}
.cp-kpi-stat--attention:has(.cp-kpi-icon--neutral) {
    animation: cp-bg-neutral 3s ease-in-out infinite 0.5s;
}
.cp-kpi-stat--attention:has(.cp-kpi-icon--primary) {
    animation: cp-bg-primary 3s ease-in-out infinite 1s;
}

@keyframes cp-bg-warning {
    0%, 100% { background: transparent; }
    50%       { background: rgba(249, 171,   0, 0.09); }
}
@keyframes cp-bg-neutral {
    0%, 100% { background: transparent; }
    50%       { background: rgba( 95,  99, 104, 0.07); }
}
@keyframes cp-bg-primary {
    0%, 100% { background: transparent; }
    50%       { background: rgba( 26, 115, 232, 0.07); }
}

/* ── 3 · ICON MOTION ───────────────────────────────────────── */

/* Warning: shake every 4s, stays calm in between */
.cp-kpi-stat--attention .cp-kpi-icon--warning {
    animation: cp-icon-shake 4s ease-in-out infinite;
}

@keyframes cp-icon-shake {
    0%, 50%, 100% { transform: rotate(0deg); }
    53%  { transform: rotate(-10deg); }
    57%  { transform: rotate( 10deg); }
    61%  { transform: rotate( -6deg); }
    65%  { transform: rotate(  6deg); }
    69%  { transform: rotate(  0deg); }
}

/* Neutral / primary: subtle scale pulse */
.cp-kpi-stat--attention .cp-kpi-icon--neutral {
    animation: cp-icon-pulse 3s ease-in-out infinite 0.5s;
}
.cp-kpi-stat--attention .cp-kpi-icon--primary {
    animation: cp-icon-pulse 3s ease-in-out infinite 1s;
}

@keyframes cp-icon-pulse {
    0%, 100% { transform: scale(1);    }
    50%       { transform: scale(1.15); }
}

/* Value: colored + bold */
.cp-kpi-stat--attention:has(.cp-kpi-icon--warning) .cp-kpi-value { color: #b45309;            font-weight: 700; }
.cp-kpi-stat--attention:has(.cp-kpi-icon--neutral) .cp-kpi-value { color: var(--on-surface);   font-weight: 700; }
.cp-kpi-stat--attention:has(.cp-kpi-icon--primary) .cp-kpi-value { color: var(--primary);      font-weight: 700; }

.cp-kpi-texts {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.cp-kpi-value {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--on-surface);
    line-height: 1;
}

.cp-kpi-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--on-surface-variant);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dark mode */
[data-theme="dark"] .cp-kpi-strip {
    background: var(--surface);
    border-color: var(--outline);
}

[data-theme="dark"] .cp-kpi-stat {
    border-right-color: var(--outline);
}

/* Responsive: 2-column grid on small screens */
@media (max-width: 768px) {
    .cp-kpi-strip {
        flex-wrap: wrap;
    }

    .cp-kpi-stat {
        flex: 0 0 50%;
        border-right: 1px solid var(--outline-variant);
        border-bottom: 1px solid var(--outline-variant);
    }

    .cp-kpi-stat:nth-child(even) {
        border-right: none;
    }

    .cp-kpi-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ============================================================
   Customer Portal — Timeline / Stepper (cp- prefix)
   All other portal UI uses existing cb- classes.
   ============================================================ */

/* ── Container ─────────────────────────────────────────────── */
.cp-timeline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    overflow-x: auto;
    padding: 20px 0 8px;
    gap: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--outline) transparent;
}

.cp-timeline::-webkit-scrollbar {
    height: 4px;
}
.cp-timeline::-webkit-scrollbar-track {
    background: transparent;
}
.cp-timeline::-webkit-scrollbar-thumb {
    background: var(--outline);
    border-radius: var(--radius-full);
}

/* ── Step ───────────────────────────────────────────────────── */
.cp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
    position: relative;
    padding-bottom: 8px;
}

/* Connector line between steps */
.cp-step::after {
    content: "";
    position: absolute;
    top: 14px;                       /* center of the 28px node */
    left: calc(50% + 14px);
    right: calc(-50% + 14px);
    height: 2px;
    background: var(--outline);
    transition: background 0.2s ease;
}

.cp-step:last-child::after {
    display: none;
}

/* ── Node (circle) ──────────────────────────────────────────── */
.cp-step-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--outline);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--on-surface-variant);
    z-index: 1;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

/* ── Completed state ────────────────────────────────────────── */
.cp-step-completed .cp-step-node {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.cp-step-completed::after {
    background: var(--primary);
}

/* ── Active state ───────────────────────────────────────────── */
.cp-step-active .cp-step-node {
    border-color: var(--primary);
    background: var(--primary-surface);
    color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
}

/* ── Rejected state ─────────────────────────────────────────── */
.cp-step-rejected .cp-step-node {
    background: var(--error);
    border-color: var(--error);
    color: #fff;
}

/* ── Labels ─────────────────────────────────────────────────── */
.cp-step-label {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--on-surface-variant);
    text-align: center;
    line-height: 1.3;
    max-width: 90px;
    transition: color 0.2s ease;
}

.cp-step-completed .cp-step-label,
.cp-step-active .cp-step-label {
    color: var(--primary);
    font-weight: 600;
}

.cp-step-rejected .cp-step-label {
    color: var(--error);
    font-weight: 600;
}

.cp-step-date {
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--on-surface-variant);
    text-align: center;
}

/* ── Node icon (checkmark for completed) ───────────────────── */
.cp-step-completed .cp-step-node::after {
    content: "✓";
}

.cp-step-rejected .cp-step-node::after {
    content: "✕";
}

/* ── Dark mode overrides ────────────────────────────────────── */
[data-theme="dark"] .cp-step-node {
    background: var(--surface);
    border-color: var(--outline);
    color: var(--on-surface-variant);
}

[data-theme="dark"] .cp-step-completed .cp-step-node {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

[data-theme="dark"] .cp-step-active .cp-step-node {
    background: var(--primary-surface);
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .cp-step-rejected .cp-step-node {
    background: var(--error);
    border-color: var(--error);
}

/* ── Responsive: vertical layout on mobile ──────────────────── */
@media (max-width: 768px) {
    .cp-timeline {
        flex-direction: column;
        overflow-x: unset;
        overflow-y: visible;
        padding: 0 8px;
        gap: 0;
    }

    .cp-step {
        flex-direction: row;
        align-items: flex-start;
        flex: unset;
        width: 100%;
        min-width: unset;
        padding: 0 0 16px 0;
        gap: 12px;
    }

    /* Vertical connector line */
    .cp-step::after {
        top: calc(14px + 14px);
        left: 13px;               /* center of node horizontally */
        right: unset;
        width: 2px;
        height: calc(100% - 14px);
        bottom: 0;
    }

    .cp-step:last-child::after {
        display: none;
    }

    .cp-step-node {
        flex-shrink: 0;
        margin-top: 0;
    }

    .cp-step-label,
    .cp-step-date {
        text-align: left;
        max-width: unset;
        margin-top: 4px;
    }

    .cp-step-date {
        margin-top: 2px;
    }
}
