.dashboard-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #16213e 55%, #1d4ed8 100%);
    color: #f8fafc;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.dashboard-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 6px;
}

.dashboard-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    white-space: nowrap;
}

.dashboard-hero-detail {
    align-items: center;
}

.dashboard-hero-actions {
    flex-wrap: wrap;
}

.dashboard-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.dashboard-section-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.dashboard-support-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-side-panel,
.dashboard-main-panel {
    min-width: 0;
}

.dashboard-grid > .dashboard-main-panel:only-child {
    grid-column: 1 / -1;
}

.dashboard-support-card {
    position: relative;
    overflow: hidden;
}

.dashboard-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1d4ed8;
}

.dashboard-support-card.is-design-support::before {
    background: #647dc3;
}

.dashboard-support-card.is-sales-support::before {
    background: #c18067;
}

.dashboard-support-card.is-field-support::before,
.dashboard-field-support-card::before {
    background: #67b2ac;
}

.dashboard-overview-filter-bar {
    margin-bottom: 0;
}

.dashboard-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 14px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
}

.dashboard-filter-bar-compact {
    margin-bottom: 16px;
    padding: 12px;
}

.dashboard-filter-group {
    margin-bottom: 0;
    min-width: 180px;
    flex: 0 1 220px;
}

.dashboard-filter-group-page-size {
    min-width: 140px;
    flex: 0 1 160px;
}

.dashboard-filter-group-search {
    min-width: 240px;
    flex: 1 1 280px;
}

.dashboard-filter-group-full {
    min-width: 100%;
    flex: 1 1 100%;
}

.dashboard-filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-filter-actions-full {
    width: 100%;
    justify-content: flex-start;
}

.dashboard-section-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.dashboard-section-title-row h2 {
    font-size: 1.12rem;
}

.dashboard-section-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe, #e6f6ff);
    color: #1d4ed8;
}

.dashboard-section-copy {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dashboard-content-state {
    min-height: 180px;
}

.dashboard-table-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.dashboard-table-wrapper {
    border: 1px solid var(--border-light);
    border-radius: 14px;
}

.dashboard-detail-table-wrapper {
    overflow-x: auto;
}

.dashboard-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 14px 2px 2px;
}

.dashboard-pagination-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.dashboard-pagination-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-table {
    width: 100%;
    table-layout: fixed;
}

.dashboard-overview-support-table .dashboard-col-code {
    width: 13%;
}

.dashboard-overview-support-table .dashboard-col-project {
    width: 25%;
}

.dashboard-overview-support-table .dashboard-col-post {
    width: 40%;
}

.dashboard-overview-support-table .dashboard-col-status {
    width: 22%;
}

.dashboard-table th {
    background: #f8fafc;
}

.dashboard-table th,
.dashboard-table td {
    max-width: 500px;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-clickable-row {
    cursor: pointer;
    transition: var(--transition);
}

.dashboard-clickable-row:hover {
    background: #f8fafc;
}

.dashboard-code-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-code-cell strong {
    font-size: 0.95rem;
    color: #0f172a;
}

.dashboard-match-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.dashboard-match-chip.is-resolved {
    background: #dcfce7;
    color: #166534;
}

.dashboard-match-chip.is-unresolved {
    background: #fef3c7;
    color: #92400e;
}

.dashboard-project-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-project-name {
    font-weight: 600;
    color: var(--text);
}

.dashboard-project-subline {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.dashboard-latest-post {
    max-width: 500px;
    color: #334155;
    line-height: 1.5;
}

.dashboard-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-status-badge.is-good {
    background: #dcfce7;
    color: #166534;
}

.dashboard-status-badge.is-active {
    background: #dbeafe;
    color: #1d4ed8;
}

.dashboard-status-badge.is-warn {
    background: #ffedd5;
    color: #c2410c;
}

.dashboard-status-badge.is-muted {
    background: #e5e7eb;
    color: #4b5563;
}

.dashboard-empty-state {
    padding: 48px 16px;
}

.dashboard-empty-state-compact {
    padding: 28px 10px;
}

.dashboard-detail-card {
    padding-bottom: 18px;
}

.dashboard-detail-filter-bar {
    margin-bottom: 20px;
}

.dashboard-detail-layout {
    display: block;
}

.dashboard-detail-main {
    min-width: 0;
}

.dashboard-lifecycle-drawer-shell {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

.dashboard-lifecycle-drawer-shell.is-open {
    pointer-events: auto;
}

.dashboard-lifecycle-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.36);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.24s ease;
}

.dashboard-lifecycle-drawer-shell.is-open .dashboard-lifecycle-backdrop {
    opacity: 1;
}

.dashboard-lifecycle-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, calc(100vw - 24px));
    height: 100%;
    padding: 16px 16px 16px 0;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    outline: none;
}

.dashboard-lifecycle-drawer-shell.is-open .dashboard-lifecycle-drawer {
    transform: translateX(0);
}

.dashboard-lifecycle-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 24px 0 0 24px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
    overflow-y: auto;
}

.dashboard-lifecycle-card-drawer {
    border-right: 0;
}

.dashboard-lifecycle-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.dashboard-lifecycle-header h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.dashboard-lifecycle-header p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.dashboard-lifecycle-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.dashboard-lifecycle-close:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    color: #0f172a;
}

.dashboard-lifecycle-tone-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-lifecycle-tone-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    font-size: 0.74rem;
    font-weight: 700;
    color: #334155;
}

.dashboard-lifecycle-tone-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #94a3b8;
}

.dashboard-lifecycle-tone-dot.is-good {
    background: #22c55e;
}

.dashboard-lifecycle-tone-dot.is-active {
    background: #3b82f6;
}

.dashboard-lifecycle-tone-dot.is-warn {
    background: #f59e0b;
}

.dashboard-lifecycle-tone-dot.is-muted {
    background: #94a3b8;
}

.dashboard-lifecycle-sections {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-lifecycle-section {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.88);
}

.dashboard-lifecycle-section-head {
    margin-bottom: 10px;
}

.dashboard-lifecycle-section-head h4 {
    font-size: 0.96rem;
    margin-bottom: 3px;
}

.dashboard-lifecycle-section-head p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.dashboard-lifecycle-step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-lifecycle-step {
    padding-top: 10px;
    border-top: 1px dashed var(--border-light);
}

.dashboard-lifecycle-step:first-child {
    padding-top: 0;
    border-top: 0;
}

.dashboard-lifecycle-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.dashboard-lifecycle-step-head strong {
    font-size: 0.82rem;
    color: #0f172a;
}

.dashboard-lifecycle-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    min-width: 88px;
}

.dashboard-lifecycle-segment {
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
}

.dashboard-lifecycle-segment.is-filled.is-good {
    background: #22c55e;
}

.dashboard-lifecycle-segment.is-filled.is-active {
    background: #3b82f6;
}

.dashboard-lifecycle-segment.is-filled.is-warn {
    background: #f59e0b;
}

.dashboard-lifecycle-segment.is-filled.is-muted {
    background: #94a3b8;
}

.dashboard-lifecycle-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dashboard-lifecycle-status-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef2ff;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 700;
}

.dashboard-lifecycle-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    font-size: 0.76rem;
    color: #475569;
    line-height: 1.5;
}

.dashboard-lifecycle-footer strong {
    color: #0f172a;
}

.dashboard-placeholder-body {
    border: 1px dashed var(--border-light);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(241, 245, 249, 0.72));
}

.dashboard-schedule-meta {
    margin-bottom: 16px;
}

.dashboard-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-schedule-item {
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.dashboard-schedule-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.dashboard-schedule-time {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.dashboard-schedule-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.dashboard-schedule-project {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
}

.dashboard-schedule-event {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dashboard-schedule-chip-row {
    margin-top: 10px;
    margin-bottom: 10px;
}

.dashboard-schedule-line {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #334155;
}

.dashboard-schedule-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.dashboard-support-detail-table {
    min-width: 1120px;
    border-collapse: separate;
    border-spacing: 0;
}

.dashboard-support-detail-table th,
.dashboard-support-detail-table td {
    vertical-align: top;
}

.dashboard-support-detail-table tbody tr td {
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-support-detail-table tbody tr:hover td {
    background: #f8fafc;
}

.dashboard-support-detail-table thead th {
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
}

.dashboard-support-col-progress {
    width: 200px;
    min-width: 200px;
    max-width: 230px;
}

.dashboard-item-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dashboard-item-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 700;
}

.dashboard-detail-value {
    min-width: 110px;
    color: #0f172a;
    line-height: 1.5;
    font-weight: 600;
}

.dashboard-method-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-progress-cell {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    min-width: 0;
    padding: 4px 0;
}

.dashboard-progress-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.dashboard-progress-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.dashboard-progress-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
}

.dashboard-progress-segment {
    height: 7px;
    border-radius: 999px;
    background: #e5e7eb;
}

.dashboard-progress-segment.is-filled.is-good {
    background: #22c55e;
}

.dashboard-progress-segment.is-filled.is-active {
    background: #3b82f6;
}

.dashboard-progress-segment.is-filled.is-warn {
    background: #f59e0b;
}

.dashboard-progress-segment.is-filled.is-muted {
    background: #94a3b8;
}

.dashboard-progress-status {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.75rem;
    color: #111827;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: right;
}

.trip-schedule-page {
    gap: 24px;
}

.trip-schedule-hero {
    background:
        radial-gradient(circle at 15% 15%, rgba(34, 197, 94, 0.16), transparent 22%),
        radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.18), transparent 28%),
        linear-gradient(135deg, #082f49 0%, #0f766e 52%, #164e63 100%);
}

.trip-schedule-hero-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.trip-schedule-hero-meta {
    justify-content: center;
}

.trip-schedule-frame {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trip-schedule-header {
    margin-bottom: 0;
}

.trip-schedule-header-actions {
    justify-content: flex-end;
}

.trip-schedule-toggle-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trip-schedule-toggle-row.is-hidden {
    display: none;
}

.trip-schedule-toggle.is-active {
    border-color: #0f766e;
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
}

.trip-schedule-filter-bar {
    margin-bottom: 0;
}

.trip-schedule-focus-group {
    min-width: 220px;
    flex: 0 1 260px;
}

.trip-schedule-nav-actions {
    justify-content: flex-start;
}

.trip-schedule-range-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trip-schedule-range-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fafc, #eef6ff);
    border: 1px solid #dbeafe;
    color: #0f172a;
}

.trip-schedule-range-copy strong {
    font-size: 0.94rem;
}

.trip-schedule-range-copy span {
    color: #475569;
    line-height: 1.5;
}

.trip-schedule-range-copy-secondary {
    background: linear-gradient(180deg, #fff7ed, #fff1e6);
    border-color: #fed7aa;
}

.trip-schedule-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trip-schedule-metric-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.trip-schedule-metric-card strong {
    font-size: 1.6rem;
    line-height: 1;
    color: #0f172a;
}

.trip-schedule-metric-card span:last-child {
    color: #64748b;
    font-size: 0.82rem;
}

.trip-schedule-metric-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f766e;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trip-schedule-content {
    min-height: 420px;
}

.trip-schedule-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.trip-schedule-calendar-panel,
.trip-schedule-detail-card,
.trip-schedule-map-sidebar,
.trip-schedule-map-stage {
    min-width: 0;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: #fff;
}

.trip-schedule-calendar-panel {
    padding: 16px;
}

.trip-schedule-detail-card,
.trip-schedule-map-sidebar {
    padding: 18px;
}

.trip-schedule-detail-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.trip-schedule-detail-head h3 {
    font-size: 1.02rem;
}

.trip-schedule-detail-head p {
    color: #64748b;
    font-size: 0.84rem;
}

.trip-schedule-detail-list,
.trip-schedule-day-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trip-schedule-week-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.trip-schedule-date-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.trip-schedule-date-column.is-focus {
    border-color: #0f766e;
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.12);
}

.trip-schedule-date-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.trip-schedule-date-weekday {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0f766e;
    text-transform: uppercase;
}

.trip-schedule-date-body,
.trip-schedule-month-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trip-schedule-date-empty {
    padding: 16px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-size: 0.84rem;
    text-align: center;
}

.trip-schedule-compact-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.trip-schedule-compact-card.is-resolved {
    border-color: #bbf7d0;
    background: linear-gradient(180deg, #f0fdf4, #f8fafc);
}

.trip-schedule-compact-card.is-unresolved {
    border-color: #fed7aa;
    background: linear-gradient(180deg, #fff7ed, #fffaf5);
}

.trip-schedule-compact-card.is-compact {
    padding: 8px 10px;
}

.trip-schedule-compact-card strong {
    font-size: 0.84rem;
    line-height: 1.4;
    color: #0f172a;
}

.trip-schedule-compact-card span {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.35;
}

.trip-schedule-compact-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f766e;
}

.trip-schedule-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.trip-schedule-month-weekday {
    padding: 0 4px 8px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #64748b;
    text-align: center;
    text-transform: uppercase;
}

.trip-schedule-month-cell {
    min-height: 164px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.trip-schedule-month-cell.is-focus {
    border-color: #0f766e;
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.12);
}

.trip-schedule-month-cell.is-outside {
    opacity: 0.72;
}

.trip-schedule-month-date {
    align-self: flex-start;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.96rem;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
}

.trip-schedule-more-chip {
    padding: 6px 10px;
    border: 0;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.74rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.trip-schedule-map-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.55fr);
    gap: 18px;
}

.trip-schedule-map-sidebar {
    max-height: 720px;
    overflow-y: auto;
}

.trip-schedule-map-stage {
    position: relative;
    overflow: hidden;
    min-height: 720px;
}

.trip-schedule-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 720px;
}

.trip-schedule-map-status {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #dbeafe;
    background: rgba(239, 246, 255, 0.96);
    color: #1d4ed8;
    font-size: 0.84rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.trip-schedule-map-status.is-ready {
    border-color: #bbf7d0;
    background: rgba(240, 253, 244, 0.94);
    color: #166534;
}

.trip-schedule-map-status.is-warning,
.trip-schedule-map-status.is-empty {
    border-color: #fed7aa;
    background: rgba(255, 247, 237, 0.96);
    color: #9a3412;
}

.trip-schedule-map-status.is-error {
    border-color: #fecaca;
    background: rgba(254, 242, 242, 0.96);
    color: #b91c1c;
}

.trip-schedule-map-info-card {
    min-width: 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px;
    color: #0f172a;
}

.trip-schedule-map-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 32%),
        linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
    border: 1px solid #dbeafe;
}

.trip-schedule-map-info-eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f766e;
}

.trip-schedule-map-info-head strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #0f172a;
}

.trip-schedule-map-info-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f766e;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.trip-schedule-map-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trip-schedule-map-info-item-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.trip-schedule-map-info-item-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trip-schedule-map-info-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trip-schedule-map-info-code,
.trip-schedule-map-info-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.trip-schedule-map-info-code {
    background: #dbeafe;
    color: #1d4ed8;
}

.trip-schedule-map-info-time {
    background: #ecfeff;
    color: #0f766e;
}

.trip-schedule-map-info-name {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
}

.trip-schedule-map-info-meta-grid {
    display: grid;
    gap: 12px;
}

.trip-schedule-map-info-meta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trip-schedule-map-info-meta-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.trip-schedule-map-info-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trip-schedule-map-info-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #dbe4f0;
    color: #334155;
    font-size: 0.74rem;
    font-weight: 700;
}

.trip-schedule-map-info-empty,
.trip-schedule-map-info-location {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}

.trip-route-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.trip-route-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.trip-route-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.trip-route-card-title-row h4 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: #0f172a;
}

.trip-route-card-title-row p {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.4;
}

.trip-route-color-dot {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.trip-route-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.trip-route-card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trip-route-card-metrics span,
.trip-route-card-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.trip-route-card-metrics span {
    background: #ecfeff;
    color: #0f766e;
}

.trip-route-card-note {
    background: #fff7ed;
    color: #9a3412;
}

.trip-route-stop-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trip-route-stop-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.trip-route-stop-index {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e, #1d4ed8);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
}

.trip-route-stop-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trip-route-stop-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.trip-route-stop-topline strong {
    color: #0f172a;
    font-size: 0.88rem;
    line-height: 1.4;
}

.trip-route-stop-topline span,
.trip-route-stop-code,
.trip-route-stop-address,
.trip-route-stop-meta {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.45;
}

.trip-route-stop-code {
    font-weight: 800;
    color: #1d4ed8;
}

.support-list-surface-toggle-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.support-list-surface-toggle {
    min-width: 62px;
    border-color: transparent;
    border-radius: 999px;
}

.support-list-surface-toggle.is-active {
    border-color: rgba(15, 118, 110, 0.24);
    background: linear-gradient(135deg, #0f766e, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.18);
}

.support-list-map-meta {
    margin-bottom: 14px;
}

.support-list-map-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.support-list-trip-plan-btn.is-hidden {
    display: none;
}

.support-list-trip-plan-sidebar {
    display: flex;
    flex-direction: column;
}

.support-list-trip-plan-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 760px;
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.support-list-trip-plan-shell.is-error {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fffefe, #fff5f5);
}

.support-list-trip-plan-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.support-list-trip-plan-heading strong {
    font-size: 1rem;
    color: #0f172a;
}

.support-list-trip-plan-heading span,
.support-list-trip-plan-origin,
.support-list-trip-plan-empty,
.support-list-trip-stop-summary span {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.55;
}

.support-list-trip-plan-origin {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-weight: 700;
}

.support-list-trip-plan-empty {
    padding: 16px;
    border-radius: 18px;
    border: 1px dashed #cbd5e1;
    background: rgba(248, 250, 252, 0.85);
}

.support-list-trip-plan-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-list-trip-plan-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.support-list-trip-plan-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.support-list-trip-plan-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.support-list-trip-plan-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 5px;
    flex: 0 0 auto;
}

.support-list-trip-plan-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    padding: 6px 8px;
    border-radius: 18px 18px 18px 6px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
    color: #ffffff;
    transform: translateY(-4px);
}

.support-list-trip-plan-marker-group {
    font-size: 0.62rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.support-list-trip-plan-marker-stop {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
}

.support-list-trip-plan-title-row h4 {
    margin: 0;
    font-size: 0.94rem;
    color: #0f172a;
}

.support-list-trip-plan-title-row p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.45;
}

.support-list-trip-plan-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0f766e;
    font-size: 0.74rem;
    font-weight: 800;
}

.support-list-trip-plan-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.support-list-trip-plan-metrics span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 800;
}

.support-list-trip-plan-stop-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-list-trip-plan-stop-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.support-list-trip-plan-stop-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #0f766e;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
}

.support-list-trip-plan-stop-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-list-trip-plan-stop-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.support-list-trip-plan-stop-topline strong {
    font-size: 0.84rem;
    color: #0f172a;
    line-height: 1.45;
}

.support-list-trip-plan-stop-topline span,
.support-list-trip-plan-stop-code,
.support-list-trip-plan-stop-address,
.support-list-trip-plan-stop-meta {
    font-size: 0.76rem;
    line-height: 1.45;
    color: #64748b;
}

.support-list-trip-plan-stop-code {
    font-weight: 800;
    color: #1d4ed8;
}

.support-list-trip-plan-stop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.support-list-trip-plan-stop-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.7rem;
    font-weight: 800;
}

.support-list-trip-stop-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.support-list-trip-stop-summary strong {
    color: #0f172a;
    font-size: 0.84rem;
}

.support-list-map-stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 20%),
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.14), transparent 24%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.support-list-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 760px;
}

.support-list-map-status {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 1;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    background: rgba(239, 246, 255, 0.94);
    color: #1d4ed8;
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.support-list-map-status.is-ready {
    border-color: #bbf7d0;
    background: rgba(240, 253, 244, 0.94);
    color: #166534;
}

.support-list-map-status.is-warning,
.support-list-map-status.is-empty {
    border-color: #fed7aa;
    background: rgba(255, 247, 237, 0.96);
    color: #9a3412;
}

.support-list-map-status.is-error {
    border-color: #fecaca;
    background: rgba(254, 242, 242, 0.96);
    color: #b91c1c;
}

.support-list-map-info-card {
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px;
    color: #0f172a;
}

.support-list-map-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 32%),
        linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
}

.support-list-map-info-eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f766e;
}

.support-list-map-info-head strong {
    display: block;
    font-size: 0.96rem;
    line-height: 1.45;
    color: #0f172a;
}

.support-list-map-info-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f766e;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.support-list-map-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-list-map-info-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.support-list-map-info-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.support-list-map-info-badge-row,
.support-list-map-info-chip-list,
.support-list-map-info-progress-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.support-list-map-info-code,
.support-list-map-info-method,
.support-list-map-info-chip,
.support-list-map-progress-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.support-list-map-info-code,
.support-list-map-info-method {
    padding: 5px 10px;
}

.support-list-map-info-code {
    background: #dbeafe;
    color: #1d4ed8;
}

.support-list-map-info-method {
    background: #ecfeff;
    color: #0f766e;
}

.support-list-map-info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #ffffff;
    color: #1d4ed8;
    font-size: 0.74rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.support-list-map-info-link:hover {
    border-color: #93c5fd;
    background: #eff6ff;
}

.support-list-map-info-name {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.4;
    color: #0f172a;
}

.support-list-map-info-location,
.support-list-map-info-empty {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}

.support-list-map-info-meta-grid {
    display: grid;
    gap: 12px;
}

.support-list-map-info-meta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-list-map-info-meta-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.support-list-map-info-chip {
    padding: 6px 10px;
    background: #f1f5f9;
    border: 1px solid #dbe4f0;
    color: #334155;
}

.support-list-map-progress-chip {
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #334155;
}

.support-list-map-progress-chip strong {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
}

.support-list-map-progress-chip.is-good {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.support-list-map-progress-chip.is-active {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.support-list-map-progress-chip.is-warn {
    border-color: #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.support-list-map-progress-chip.is-muted {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #475569;
}

.support-list-map-info-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 2px;
}

.support-list-map-info-company-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.support-list-map-info-company-grid span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.support-list-map-info-company-grid strong {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #0f172a;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-section-header,
    .dashboard-table-meta,
    .dashboard-filter-bar,
    .dashboard-filter-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-filter-actions-full {
        width: auto;
    }

    .dashboard-pagination {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-pagination-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .dashboard-lifecycle-drawer {
        width: 100%;
        padding: 12px 0 0;
    }

    .dashboard-lifecycle-card {
        border-radius: 24px 24px 0 0;
        border-right: 1px solid var(--border-light);
        border-bottom: 0;
    }

    .dashboard-progress-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-progress-status {
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
    }

    .trip-schedule-hero-stack {
        align-items: flex-start;
    }

    .trip-schedule-range-strip,
    .trip-schedule-metrics,
    .trip-schedule-layout,
    .trip-schedule-map-layout,
    .trip-schedule-week-grid,
    .trip-schedule-month-grid {
        grid-template-columns: 1fr;
    }

    .support-list-map-layout {
        grid-template-columns: 1fr;
    }

    .support-list-surface-toggle-row {
        width: 100%;
        justify-content: stretch;
    }

    .support-list-surface-toggle {
        flex: 1 1 0;
    }

    .trip-schedule-month-weekday {
        display: none;
    }

    .trip-schedule-month-cell,
    .trip-schedule-map-stage,
    .trip-schedule-map-canvas,
    .support-list-trip-plan-shell,
    .support-list-map-stage,
    .support-list-map-canvas {
        min-height: 420px;
    }

    .support-list-map-info-company-grid {
        grid-template-columns: 1fr;
    }
}