/* DigiCON public shuttle calendar (Checkfront-style) */

.ds-cal-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.ds-cal {
    --ds-brand: #00a1d6;
    --ds-accent: #db0812;
    --ds-ink: #191919;
    --ds-muted: #6b7280;
    --ds-line: #e5e7eb;
    --ds-bg: #f8f9fb;
    font-family: Ubuntu, system-ui, sans-serif;
    color: var(--ds-ink);
    background: #fff;
    padding: 0 0 24px;
    margin: 0;
    max-width: 100%;
    border: 1px solid var(--ds-line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.ds-cal * {
    box-sizing: border-box;
}

.ds-cal-toolbar {
    background: #fff;
    border-bottom: 1px solid var(--ds-line);
    padding: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.ds-cal-toolbar__sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    padding: 12px 20px 10px;
    border-bottom: 1px solid var(--ds-line);
}

.ds-cal-toolbar__brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.ds-cal-toolbar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ds-cal-toolbar__top {
    margin-bottom: 10px;
}

.ds-cal-toolbar__top-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px 16px;
}

.ds-cal-toolbar__slot {
    display: flex;
    align-items: center;
    min-width: 0;
}

.ds-cal-toolbar__slot--left {
    flex: 1 1 auto;
    justify-content: flex-start;
}

.ds-cal-toolbar__slot--right {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.ds-cal-toolbar__form {
    margin: 0;
    width: 100%;
}

.ds-cal-filters-row {
    border-top: 1px solid var(--ds-line);
}

.ds-cal-filters-col {
    min-width: 0;
}

.ds-cal-filters-col--demand {
    border-left: 1px solid var(--ds-line);
    padding-left: 16px;
}

.ds-cal-toolbar__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
}

.ds-cal-toolbar__tools {
    flex: 1 1 320px;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
}

.ds-cal-toolbar__tools-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
}

.ds-cal-toolbar__apply {
    flex-shrink: 0;
}

.ds-cal-pax-tool {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    background: #f8f9fb;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 0 10px 0 8px;
}

.ds-cal-pax-tool__icon {
    color: var(--ds-muted);
    font-size: 14px;
    margin-right: 4px;
}

.ds-cal-pax-tool__input {
    border: none;
    background: transparent;
    flex: 1;
    min-width: 0;
    padding: 7px 4px;
    font-size: 13px;
    outline: none;
}

.ds-cal-pax-tool__clear {
    color: var(--ds-muted);
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
}

.ds-cal-pax-tool__suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border: 1px solid var(--ds-line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 240px;
    overflow-y: auto;
}

.ds-cal-pax-tool__list {
    list-style: none;
    margin: 0;
    padding: 4px;
}

.ds-cal-pax-tool__pick {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.ds-cal-pax-tool__pick:hover {
    background: #f3f4f6;
}

.ds-cal-range-popover {
    position: relative;
}

.ds-cal-range-popover__trigger {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--ds-line);
    border-radius: 10px;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    font: inherit;
    text-align: right;
}

.ds-cal-range-popover__trigger:hover,
.ds-cal-range-popover.is-open .ds-cal-range-popover__trigger {
    border-color: var(--ds-brand);
    box-shadow: 0 0 0 1px rgba(0, 161, 214, 0.15);
}

.ds-cal-range-popover__icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.ds-cal-range-popover__text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 0;
}

.ds-cal-range-popover__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ds-ink);
}

.ds-cal-range-popover__meta {
    font-size: 11px;
    color: var(--ds-muted);
}

.ds-cal-range-popover__panel[hidden] {
    display: none !important;
}

.ds-cal-range-popover__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 35;
    min-width: 280px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--ds-line);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.ds-cal-range-popover__fields {
    display: grid;
    gap: 10px;
}

.ds-cal-range-popover__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ds-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ds-cal-range-popover__field input {
    font-size: 13px;
    padding: 6px 8px;
    border: 1px solid var(--ds-line);
    border-radius: 6px;
}

.ds-cal-range-popover__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ds-cal-pax-banner {
    margin: 0;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    background: #eff6ff;
    color: #1e40af;
    border-bottom: 1px solid #bfdbfe;
}

.ds-cal-toolbar__logo {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ds-cal-toolbar__sub {
    font-size: 12px;
    color: var(--ds-muted);
}

.ds-cal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px 14px;
    border-top: 1px solid var(--ds-line);
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.ds-cal-footer__sync {
    margin: 0;
    font-size: 11px;
    color: var(--ds-muted);
    letter-spacing: 0.01em;
}

.ds-cal-footer__sync--muted {
    font-style: italic;
}

.ds-cal-week-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
}

.ds-cal-week-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #f3f4f6;
    border: 1px solid var(--ds-line);
    color: var(--ds-ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

a.ds-cal-week-nav__btn:hover {
    border-color: var(--ds-brand);
    color: var(--ds-brand);
    background: #fff;
}

.ds-cal-week-nav__btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #e5e7eb;
}

.ds-cal-week-nav__range {
    flex: 1 1 auto;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: 100px;
}

.ds-cal-week-nav__icon {
    font-size: 16px;
    line-height: 1;
}

.ds-cal-days {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ds-cal-day {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 14px;
    border-radius: 6px;
    background: #f3f4f6;
    color: var(--ds-ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid transparent;
    min-width: 72px;
}

.ds-cal-day:hover {
    background: #e8eaed;
    color: var(--ds-ink);
}

.ds-cal-day.is-active {
    background: var(--ds-accent);
    color: #fff;
    border-color: var(--ds-accent);
}

.ds-cal-day.is-today:not(.is-active) {
    border-color: var(--ds-brand);
}

.ds-cal-layout {
    padding: 16px 20px 20px;
    overflow-x: auto;
    background: var(--ds-bg);
}

.ds-cal-week {
    display: grid;
    grid-template-columns: 52px repeat(var(--ds-cal-cols, 7), minmax(110px, 1fr));
    grid-template-rows: auto var(--ds-cal-height, 1008px);
    min-width: min(100%, calc(52px + var(--ds-cal-cols, 7) * 110px));
    background: #fff;
    border: 1px solid var(--ds-line);
    border-radius: 8px;
    overflow: hidden;
}

.ds-cal-corner {
    grid-column: 1;
    grid-row: 1;
    background: #f9fafb;
    border-bottom: 1px solid var(--ds-line);
    border-right: 1px solid var(--ds-line);
}

.ds-cal-col-head {
    grid-row: 1;
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f9fafb;
    border-bottom: 1px solid var(--ds-line);
    border-right: 1px solid var(--ds-line);
}

.ds-cal-col-head.is-focus {
    background: #fff5f5;
    box-shadow: inset 0 -3px 0 var(--ds-accent);
}

.ds-cal-col-head.is-today .ds-cal-col-head__date {
    color: var(--ds-brand);
}

.ds-cal-col-head__date {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--ds-muted);
    text-transform: none;
    margin-top: 2px;
}

.ds-cal-times {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    border-right: 1px solid var(--ds-line);
    background: #fafbfc;
}

.ds-cal-time {
    height: var(--ds-cal-hour, 56px);
    border-bottom: 1px solid #f0f1f3;
    font-size: 11px;
    color: var(--ds-muted);
    position: relative;
}

.ds-cal-time span {
    position: absolute;
    top: -7px;
    right: 6px;
    background: #fafbfc;
    padding: 0 2px;
}

.ds-cal-col {
    grid-row: 2;
    position: relative;
    border-right: 1px solid var(--ds-line);
    background: #fff;
}

.ds-cal-col.is-focus {
    background: #fffcfc;
}

.ds-cal-col:last-child {
    border-right: none;
}

.ds-cal-slot {
    height: var(--ds-cal-hour, 56px);
    border-bottom: 1px solid #f3f4f6;
}

.ds-cal-event {
    position: absolute;
    left: 4px;
    right: 4px;
    z-index: 5;
    margin: 0;
    padding: 6px 8px;
    border: none;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    line-height: 1.35;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.12s, box-shadow 0.12s;
}

.ds-cal-event[data-scheduled-key] {
    right: auto;
}

.ds-cal-event:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 6;
}

.ds-cal-event__time {
    display: block;
    font-weight: 700;
    font-size: 12px;
}

.ds-cal-event__title {
    display: block;
    font-weight: 500;
    opacity: 0.95;
}

.ds-cal-event__veh,
.ds-cal-event__pax {
    display: block;
    opacity: 0.85;
    font-size: 10px;
}

.ds-cal-event__warn {
    display: inline-block;
    margin-top: 2px;
    background: #fff;
    color: #b00020;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 9px;
}

/* Pick-up airport — keep brand blue */
.ds-cal-event--airport_pickup {
    background: linear-gradient(135deg, #0088b8, #00a1d6);
}

/* Drop-off airport — warm amber */
.ds-cal-event--airport_dropoff {
    background: linear-gradient(135deg, #c2410c, #ea580c);
}

/* On-site shuttle — teal */
.ds-cal-event--onsite {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

/* Visit HQ — violet */
.ds-cal-event--hq {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

/* Germany experience — forest green */
.ds-cal-event--germany {
    background: linear-gradient(135deg, #166534, #22c55e);
}

.ds-cal-event--other {
    background: linear-gradient(135deg, #4b5563, #6b7280);
}

.ds-cal-event__status {
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 2px;
}

.ds-cal-event.is-pending {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.ds-cal-event.is-confirmed .ds-cal-event__status {
    opacity: 1;
}

.ds-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    font-size: 12px;
    color: var(--ds-muted);
}

.ds-cal-legend__swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: -2px;
}

.ds-cal-detail__status {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 0 12px;
}

.ds-cal-detail__status--pending {
    background: #fef3c7;
    color: #92400e;
}

.ds-cal-detail__status--confirmed {
    background: #d1fae5;
    color: #065f46;
}

.ds-cal-detail__status--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.ds-cal-hint {
    margin: 12px 4px 0;
    font-size: 13px;
    color: var(--ds-muted);
}

/* Modal */
.ds-cal-modal[hidden] {
    display: none !important;
}

.ds-cal-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ds-cal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(25, 25, 25, 0.55);
}

.ds-cal-modal__sheet {
    position: relative;
    width: min(920px, 96vw);
    max-height: min(92vh, 900px);
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ds-cal-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--ds-line);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ds-cal-modal__head h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ds-cal-modal__close {
    border: none;
    background: #f3f4f6;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--ds-muted);
    padding: 0;
    transition: background 0.12s, color 0.12s;
}

.ds-cal-modal__close:hover {
    background: #e5e7eb;
    color: var(--ds-ink);
}

.ds-cal-modal__body {
    padding: 20px 22px 26px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    background: #fff;
}

.ds-cal-detail__facts {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.ds-cal-detail__facts span {
    color: var(--ds-muted);
    font-weight: 500;
    margin-right: 6px;
}

.ds-cal-detail__notes {
    font-size: 13px;
    padding: 10px 12px;
    background: #f9fafb;
    border-left: 3px solid var(--ds-muted);
}

.ds-cal-pax {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ds-cal-pax-wrap {
    max-height: min(52vh, 520px);
    overflow-y: auto;
    border: 1px solid var(--ds-line);
    border-radius: 8px;
}

.ds-cal-pax th,
.ds-cal-pax td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--ds-line);
    text-align: left;
    vertical-align: top;
}

.ds-cal-pax th {
    background: #f3f4f6;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ds-muted);
}

.ds-cal-pax__cc {
    font-size: 10px;
    background: var(--ds-ink);
    color: #fff;
    padding: 1px 5px;
    border-radius: 2px;
}

/* Filters — open by default, compact; not sticky (scrolls away) */
.ds-cal-span-nav {
    display: inline-flex;
    gap: 0;
    margin: 0;
    border: 1px solid var(--ds-line);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.ds-cal-span-nav__btn {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    color: var(--ds-muted);
    background: #f3f4f6;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.ds-cal-span-nav__btn.is-active {
    background: #fff;
    color: var(--ds-ink);
    box-shadow: inset 0 0 0 1px var(--ds-line);
}

.ds-cal-filters-drawer {
    margin: 0;
    border: none;
    border-top: 1px solid var(--ds-line);
    background: #fafbfc;
}

.ds-cal-filters-drawer__body {
    padding: 0;
}

.ds-cal-filters-drawer__label {
    font-size: 13px;
    font-weight: 600;
}

.ds-cal-filters-drawer__summary {
    margin-left: auto;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ds-muted);
}

.ds-cal-filters-drawer__summary:not(:empty) {
    padding: 2px 8px;
    border-radius: 999px;
    background: #e8f6fc;
    color: #0369a1;
}

.ds-cal-filters-drawer__chevron {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    position: relative;
}

.ds-cal-filters-drawer__chevron::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 6px;
    height: 6px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.15s ease;
}

.ds-cal-filters-drawer[open] .ds-cal-filters-drawer__chevron::after {
    top: 4px;
    transform: rotate(-135deg);
}

.ds-cal-filters-drawer[open] .ds-cal-filters-drawer__hint--closed {
    display: none;
}

.ds-cal-filters-drawer:not([open]) .ds-cal-filters-drawer__hint--open {
    display: none;
}

.ds-cal-filters-drawer__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--ds-ink);
}

.ds-cal-filters-drawer__toggle::-webkit-details-marker {
    display: none;
}

.ds-cal-filters-drawer__hint {
    font-weight: 400;
    color: var(--ds-muted);
    font-size: 11px;
}

.ds-cal-filters-drawer[open] .ds-cal-filters-drawer__toggle {
    border-bottom: 1px solid var(--ds-line);
    background: #f3f4f6;
}

.ds-cal-filters-row.ds-cal-filters {
    padding: 10px 20px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 20px;
}

.ds-cal-filters-row.ds-cal-filters fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.ds-cal-filters-row.ds-cal-filters legend {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ds-muted);
    margin-bottom: 6px;
}

.ds-cal-filters__bulk {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.ds-cal-filter-bulk {
    padding: 2px 8px;
    border: 1px solid var(--ds-line);
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ds-muted);
}

.ds-cal-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ds-cal-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    background: #fff;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ds-ink);
    transition: opacity 0.12s, border-color 0.12s;
}

.ds-cal-filter-chip.is-active {
    border-color: var(--ds-ink);
    box-shadow: inset 0 0 0 1px var(--ds-ink);
}

.ds-cal-filter-chip:not(.is-active) {
    opacity: 0.5;
}

.ds-cal-filter-chip .ds-cal-legend__swatch {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ds-cal-col-head--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ds-cal-col-head--link:hover {
    background: #fff5f5;
}

.ds-cal-layout--day .ds-cal-week {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    min-width: 0;
    max-width: 100%;
}

.ds-cal-event.is-cal-hidden,
.ds-cal-demand.is-cal-hidden {
    display: none !important;
}

.ds-cal-event--demand,
.ds-cal-demand {
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.92) 4px,
        rgba(0, 0, 0, 0.05) 4px,
        rgba(0, 0, 0, 0.05) 8px
    ) !important;
    border: 2px dashed #9ca3af !important;
    color: #374151 !important;
    box-shadow: none;
}

.ds-cal-detail__badge {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
}

.ds-cal-demand-pax {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ds-cal-demand-pax__row {
    padding: 10px 0;
    border-bottom: 1px solid var(--ds-line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ds-cal-demand-pax__meta {
    font-size: 13px;
    color: var(--ds-muted);
}

.ds-cal-muted {
    color: var(--ds-muted);
    font-size: 13px;
}

body.ds-cal-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    body.dcal-page .dc-site-main {
        padding: 12px 12px 24px;
    }

    .ds-cal-toolbar__top-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ds-cal-toolbar__slot--right {
        justify-content: stretch;
    }

    .ds-cal-range-popover {
        width: 100%;
    }

    .ds-cal-range-popover__trigger {
        width: 100%;
        justify-content: space-between;
    }

    .ds-cal-range-popover__text {
        align-items: flex-start;
        text-align: left;
    }

    .ds-cal-pax-tool {
        max-width: none;
    }

    .ds-cal-filters-row {
        grid-template-columns: 1fr;
    }

    .ds-cal-filters-col--demand {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--ds-line);
        padding-top: 12px;
    }

    .ds-cal-range-popover__panel {
        right: auto;
        left: 0;
        width: 100%;
    }

    .ds-cal-wrap {
        padding: 0;
    }

    .ds-cal {
        border-radius: 8px;
    }

    .ds-cal-toolbar__sticky {
        padding: 10px 12px 8px;
    }

    .ds-cal-toolbar__sub {
        display: block;
        font-size: 11px;
    }

    .ds-cal-footer {
        padding: 8px 12px 12px;
    }

    .ds-cal-toolbar__sticky {
        padding: 8px 12px 6px;
    }

    .ds-cal-toolbar__logo {
        font-size: 15px;
    }

    .ds-cal-week-nav__label {
        display: none;
    }

    .ds-cal-week-nav__btn {
        padding: 8px 10px;
        min-width: 40px;
        justify-content: center;
    }

    .ds-cal-week-nav__range {
        font-size: 14px;
        flex: 1 1 100%;
        order: -1;
    }

    .ds-cal-toolbar__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .ds-cal-span-nav {
        width: 100%;
    }

    .ds-cal-span-nav__btn {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
    }

    .ds-cal-filters {
        grid-template-columns: 1fr;
    }

    .ds-cal-filters-drawer__hint {
        font-size: 10px;
    }

    .ds-cal-layout {
        padding: 12px 10px 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ds-cal-layout:not(.ds-cal-layout--day) .ds-cal-week {
        min-width: calc(48px + 7 * 92px);
    }

    .ds-cal-layout--day {
        overflow-x: hidden;
    }

    .ds-cal-event {
        padding: 6px 8px;
        font-size: 11px;
    }

    .ds-cal-modal__sheet {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: none;
        border-radius: 0;
        margin: 0;
    }

    .ds-cal-modal {
        align-items: flex-end;
    }

    .ds-cal-modal__body {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ds-cal-pax thead {
        display: none;
    }

    .ds-cal-pax tr {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--ds-line);
    }

    .ds-cal-pax td {
        display: block;
        border: none;
        padding: 2px 0;
    }

    .ds-cal-pax td:first-child {
        font-weight: 700;
        font-size: 15px;
    }

    .ds-cal-week {
        grid-template-columns: 48px repeat(var(--ds-cal-cols, 7), minmax(88px, 1fr));
    }
}

/* Unified trip modal detail (layout from trip-modal-shared.css) */
.ds-cal-modal .digicon-trip-modal-detail {
    --ds-modal-accent: var(--ds-brand);
}

.ds-cal-modal .digicon-trip-modal-detail .digicon-trip-cal-detail__facts--ordered {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.ds-cal-modal .digicon-trip-modal-detail .digicon-trip-cal-detail__sub {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ds-muted);
}

.ds-cal-modal .digicon-trip-modal-detail .digicon-trip-cal-detail__facts--grid dd .ds-cal-status-badge {
    margin-top: 1px;
}

.ds-cal-modal .digicon-trip-modal-detail .digicon-trip-cal-detail__badge,
.ds-cal-modal .digicon-booking-demand .digicon-trip-cal-detail__badge {
    display: inline-block;
    margin: 0 0 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fff4d6;
    color: #8a6800;
    border-radius: 4px;
}

.ds-cal-modal .digicon-booking-pax-list--layout .digicon-booking-pax-card {
    padding: 14px 4px;
}

.ds-cal-modal .digicon-booking-pax-list--layout .digicon-booking-pax-card__identity {
    border-right-color: var(--ds-line);
}

.ds-cal-modal .digicon-booking-pax-list--layout .digicon-booking-pax-card__label {
    color: var(--ds-muted);
}

.ds-cal-modal .digicon-booking-pax-list--layout .digicon-booking-pax-card__value,
.ds-cal-modal .digicon-booking-pax-list--layout .digicon-booking-pax-card__flight-no {
    color: var(--ds-ink);
}

/* View tabs (calendar / list) */
.ds-cal-view-tabs--segmented {
    flex-shrink: 0;
}

.ds-cal-view-tabs__track {
    display: inline-flex;
    padding: 3px;
    background: #f3f4f6;
    border: 1px solid var(--ds-line);
    border-radius: 9px;
    gap: 2px;
}

.ds-cal-view-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ds-muted);
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}

.ds-cal-view-tab:hover {
    color: var(--ds-ink);
}

.ds-cal-view-tab.is-active {
    background: #fff;
    color: var(--ds-ink);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ds-cal-provider-banner {
    margin: 8px 16px 0;
    padding: 8px 12px;
    background: #e8f6fc;
    border-left: 3px solid var(--ds-brand);
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: var(--ds-ink);
}

.ds-cal-filters-row--assigned-only .ds-cal-filters-col--assigned {
    flex: 1 1 100%;
    max-width: 100%;
}

/* Shared status badges */
.ds-cal-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.ds-cal-status-badge--confirmed {
    background: #dcfce7;
    color: #166534;
}

.ds-cal-status-badge--pending {
    background: #fef3c7;
    color: #92400e;
}

.ds-cal-status-badge--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.ds-cal-status-badge--neutral {
    background: #f3f4f6;
    color: #374151;
}

/* List overview (backend-style) */
.ds-cal-list--overview {
    padding: 16px 20px 8px;
}

.ds-cal-list-section {
    margin: 0;
}

.ds-cal-list-section__title {
    margin: 0 0 16px;
    font-size: 1.15em;
    font-weight: 600;
}

.ds-cal-list-empty {
    margin: 12px 0;
    color: var(--ds-muted);
}

.ds-cal-list-day {
    margin-bottom: 28px;
}

.ds-cal-list-day.is-cal-hidden {
    display: none;
}

.ds-cal-list-date {
    margin: 0 0 10px;
    font-size: 1.02em;
    font-weight: 600;
    color: var(--ds-ink);
}

.ds-cal-list-table-wrap {
    border: 1px solid var(--ds-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.ds-cal-list-table--overview {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ds-cal-list-table--overview thead th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ds-muted);
    background: #f9fafb;
    border-bottom: 1px solid var(--ds-line);
}

.ds-cal-list-table--overview tbody td {
    padding: 11px 12px;
    text-align: left;
    border-bottom: 1px solid var(--ds-line);
    vertical-align: middle;
}

.ds-cal-list-table--overview tbody tr:last-child td {
    border-bottom: none;
}

.ds-cal-list-table--overview tbody tr:nth-child(even) {
    background: #fafbfc;
}

.ds-cal-list-row {
    cursor: pointer;
    transition: background 0.12s;
}

.ds-cal-list-row:hover,
.ds-cal-list-row:focus {
    background: #eef8fc !important;
    outline: none;
}

.ds-cal-list-row.is-cal-hidden {
    display: none;
}

.ds-cal-list-time {
    font-size: 13px;
    font-weight: 600;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
}

.ds-cal-list-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.ds-cal-list-type__label {
    font-weight: 500;
}

.ds-cal-list-table--overview .ds-cal-legend__swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ds-cal-list-cell--route {
    color: var(--ds-muted);
    font-size: 13px;
    max-width: 220px;
}

.ds-cal-list-pax__cap {
    color: var(--ds-muted);
}

.ds-cal-list-pax__warn {
    margin-left: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--ds-accent);
}

.ds-cal-list-view-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid var(--ds-line);
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: var(--ds-brand);
    white-space: nowrap;
}

.ds-cal-list-row:hover .ds-cal-list-view-btn,
.ds-cal-list-row:focus .ds-cal-list-view-btn {
    border-color: var(--ds-brand);
    background: #f0f9ff;
}

/* Filter icon (mobile) */
.ds-cal-filter-open {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--ds-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.ds-cal-filter-open__icon {
    display: block;
    width: 18px;
    height: 14px;
    position: relative;
}

.ds-cal-filter-open__icon::before,
.ds-cal-filter-open__icon::after,
.ds-cal-filter-open__icon {
    background: transparent;
}

.ds-cal-filter-open__icon::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: var(--ds-ink);
    box-shadow: 0 6px 0 var(--ds-ink), 0 12px 0 var(--ds-ink);
    border-radius: 1px;
}

.ds-cal-filter-open.has-active-filters::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ds-brand);
    border: 2px solid #fff;
}

/* Slide-in filter sheet */
.ds-cal-filter-sheet {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    justify-content: flex-end;
}

.ds-cal-filter-sheet[hidden] {
    display: none !important;
}

.ds-cal-filter-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.ds-cal-filter-sheet__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: min(100%, 380px);
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transform: translateX(0);
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.ds-cal-filter-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ds-line);
    flex-shrink: 0;
}

.ds-cal-filter-sheet__head h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.ds-cal-filter-sheet__close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--ds-ink);
}

.ds-cal-filter-sheet__form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.ds-cal-filter-sheet__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 16px 20px;
}

.ds-cal-filter-sheet__section {
    margin-bottom: 20px;
}

.ds-cal-filter-sheet__heading {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ds-muted);
}

.ds-cal-filter-sheet__foot {
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
    border-top: 1px solid var(--ds-line);
    background: #fafbfc;
    flex-shrink: 0;
}

.ds-cal-filter-sheet__apply {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: var(--ds-brand);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ds-cal-filter-sheet__reset {
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--ds-line);
    background: #fff;
    color: var(--ds-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

body.ds-cal-filter-sheet-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* Active filter chips (public) */
.ds-cal-active-filters--public {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0 0 10px;
    padding: 0;
    background: transparent;
    border: none;
}

.ds-cal-active-filters--public .ds-cal-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px 4px 10px;
    background: #e8f4fa;
    color: #0369a1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.ds-cal-active-filters--public .ds-cal-active-tag__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: inherit;
    text-decoration: none;
    border-radius: 50%;
    font-size: 15px;
}

.ds-cal-active-filters--public .ds-cal-active-filters__clear {
    font-size: 12px;
    font-weight: 600;
    color: var(--ds-muted);
    text-decoration: none;
}

/* Desktop inline filters */
.ds-cal-toolbar__filters-desktop {
    border-top: 1px solid var(--ds-line);
}

.ds-cal-view-tabs--range {
    display: none;
}

.ds-cal-view-tabs--mobile {
    display: none;
}

.ds-cal-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.ds-cal-lang-switch__opt {
    color: var(--ds-muted);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 6px;
}

.ds-cal-lang-switch__opt.is-active {
    color: var(--ds-ink);
    background: #f3f4f6;
}

.ds-cal-lang-switch__sep {
    color: #d1d5db;
    font-size: 11px;
}

/* Collapsible advanced filters (desktop — matches admin) */
.ds-cal-advanced-filters {
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--ds-line);
    background: #fff;
}

.ds-cal-advanced-filters__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    color: var(--ds-ink);
    user-select: none;
    transition: background 0.15s ease;
}

.ds-cal-advanced-filters__toggle:hover {
    background: #f6f7f7;
}

.ds-cal-advanced-filters__toggle::-webkit-details-marker,
.ds-cal-advanced-filters__toggle::marker {
    display: none;
    content: "";
}

.ds-cal-advanced-filters__chevron {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--ds-ink);
    transition: transform 0.2s ease;
}

.ds-cal-advanced-filters[open] .ds-cal-advanced-filters__chevron {
    transform: rotate(180deg);
}

.ds-cal-advanced-filters[open] .ds-cal-advanced-filters__hint {
    opacity: 0;
}

.ds-cal-advanced-filters__badge {
    flex-shrink: 0;
    padding: 2px 9px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 10px;
    background: var(--ds-brand);
    color: #fff;
}

.ds-cal-advanced-filters__hint {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    color: var(--ds-muted);
    transition: opacity 0.15s ease;
}

.ds-cal-advanced-filters__panel {
    padding: 0 20px 16px;
    border-top: 1px solid var(--ds-line);
}

.ds-cal-advanced-filters__footer--public {
    margin: 0;
    padding: 12px 0 0;
    border-top: none;
}

.ds-cal-advanced-filters__footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.ds-cal-advanced-filters__clear {
    font-size: 13px;
    font-weight: 600;
    color: var(--ds-muted);
    text-decoration: none;
}

.ds-cal-advanced-filters__clear:hover {
    color: var(--ds-brand);
}

.ds-cal-advanced-filters__apply {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: var(--ds-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.ds-cal-advanced-filters__layout--public {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 14px;
    padding-top: 14px;
}

.ds-cal-advanced-filters__layout--public .ds-cal-advanced-filters__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.ds-cal-advanced-filters__layout--public .ds-cal-advanced-filters__field input,
.ds-cal-advanced-filters__layout--public .ds-cal-advanced-filters__field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--ds-line);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
}

.ds-cal-advanced-filters__layout--public .ds-cal-advanced-filters__field--passenger {
    grid-column: 1 / -1;
}

/* View tabs */
.ds-cal-view-tabs--segmented {
    margin: 0;
}

.ds-cal-view-tabs--mobile {
    margin: 0 0 12px;
    width: 100%;
}

@media (min-width: 901px) {
    .ds-cal-filter-open {
        display: none !important;
    }

    .ds-cal-toolbar__filters-desktop {
        display: block;
    }

    .ds-cal-toolbar__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 12px;
    }

    .ds-cal-toolbar__top-row {
        flex-direction: row;
        align-items: center;
    }

    .ds-cal-toolbar__slot--left {
        flex: 0 0 auto;
    }

    .ds-cal-toolbar__slot--right {
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .ds-cal-view-tabs--range {
        display: inline-flex;
        flex-shrink: 0;
    }

    .ds-cal-view-tabs--mobile {
        display: none !important;
    }

    .ds-cal-toolbar__filters-desktop .ds-cal-filters-row.ds-cal-filters {
        padding: 10px 20px 12px;
        border-top: none;
    }
}

@media (max-width: 900px) {
    .ds-cal-toolbar__filters-desktop {
        display: none !important;
    }

    .ds-cal-filter-open {
        display: inline-flex;
    }

    .ds-cal-view-tabs--range {
        display: none !important;
    }

    .ds-cal-view-tabs--mobile {
        display: flex;
        width: 100%;
    }

    .ds-cal-toolbar__head {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .ds-cal-toolbar__sticky {
        display: flex;
        flex-direction: column;
    }

    .ds-cal-advanced-filters__layout--public {
        grid-template-columns: 1fr;
    }

    .ds-cal-filter-sheet__panel .ds-cal-filters-row.ds-cal-filters {
        padding: 0;
        grid-template-columns: 1fr;
    }

    .ds-cal-event {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.35;
    }

    .ds-cal-event__title {
        font-size: 12px;
        font-weight: 600;
    }

    .ds-cal-event__time {
        font-size: 11px;
        font-weight: 700;
    }

    .ds-cal-modal {
        align-items: stretch;
    }

    .ds-cal-modal__sheet {
        width: 100%;
        max-width: none;
        min-height: 100%;
        border-radius: 0;
        margin: 0;
    }

    .ds-cal-modal__body {
        padding: 16px;
        max-height: none;
        flex: 1;
        overflow-y: auto;
    }

    .ds-trip-modal-detail .digicon-trip-cal-detail__facts--grid {
        font-size: 15px;
        gap: 8px 14px;
    }
}

@media (min-width: 901px) {
    .ds-cal-filters-drawer {
        display: none;
    }
}

@media (max-width: 900px) {
    .ds-cal-provider-banner,
    .ds-cal-pax-banner {
        margin-left: 12px;
        margin-right: 12px;
    }

    .ds-cal-list--overview {
        padding: 12px 12px 8px;
    }

    .ds-cal-list-table--overview thead {
        display: none;
    }

    .ds-cal-list-table--overview,
    .ds-cal-list-table--overview tbody,
    .ds-cal-list-table--overview tr,
    .ds-cal-list-table--overview td {
        display: block;
        width: 100%;
    }

    .ds-cal-list-table--overview tbody tr {
        margin-bottom: 10px;
        border: 1px solid var(--ds-line);
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .ds-cal-list-table--overview tbody tr:nth-child(even) {
        background: #fff;
    }

    .ds-cal-list-table--overview tbody td {
        display: grid;
        grid-template-columns: 92px 1fr;
        gap: 8px;
        align-items: start;
        padding: 8px 12px;
        border-bottom: 1px solid #f3f4f6;
    }

    .ds-cal-list-table--overview tbody td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--ds-muted);
    }

    .ds-cal-list-cell--action::before {
        display: none !important;
    }

    .ds-cal-list-cell--action {
        display: flex !important;
        justify-content: flex-end;
        padding-top: 4px !important;
        border-bottom: none !important;
        background: #f9fafb;
    }

    .ds-cal-list-cell--time {
        grid-template-columns: 1fr;
        background: #f9fafb;
    }

    .ds-cal-list-cell--time::before {
        display: none;
    }

    .ds-cal-list-cell--type {
        grid-template-columns: 1fr;
        padding-top: 10px !important;
    }

    .ds-cal-list-cell--type::before {
        display: none;
    }

    .ds-cal-list-type__label {
        font-size: 15px;
        font-weight: 600;
    }

    .ds-cal-list-cell--route {
        max-width: none;
    }

    .ds-cal-filters-row.ds-cal-filters {
        padding: 10px 12px 12px;
    }

    .ds-cal-view-tabs__track {
        display: flex;
        width: 100%;
    }

    .ds-cal-view-tab {
        flex: 1 1 50%;
        min-width: 0;
        padding: 10px 12px;
        font-size: 14px;
    }
}
