/* ══════════════════════════════════════════════════════════════
   DISPATCH v2 — Revamped dispatch board
   Views: Timeline, Board (Kanban), Schedule, List
   ══════════════════════════════════════════════════════════════ */

/* ── Full-bleed: dispatch fills the entire content area ─────── */
.main:has(.dsp) {
  padding: 0 !important;
  overflow: hidden !important;
}

/* ── Layout ─────────────────────────────────────────────────── */
.dsp {
  display: flex; flex-direction: column;
  height: 100%; overflow: hidden;
  font-family: 'DM Sans', 'Manrope', system-ui, sans-serif;
  background: var(--bg-base);
  min-width: 0;
}

/* ── Header ─────────────────────────────────────────────────── */
.dsp-header {
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0; gap: 12px; min-height: 48px;
}
.dsp-header__left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.dsp-header__logo {
  width: 32px; height: 32px; border-radius: 7px;
  background: linear-gradient(135deg, #f97316, #dc2626);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; overflow: hidden;
}
.dsp-header__logo:has(img) { background: none; }
.dsp-header__logo img { width: 100%; height: 100%; object-fit: contain; }
.dsp-header__title {
  margin: 0; font-size: 17px; font-weight: 800;
  letter-spacing: -.02em; color: var(--text-primary);
  white-space: nowrap;
}
.dsp-header__sep {
  height: 22px; width: 1px; background: var(--border); flex-shrink: 0;
}
.dsp-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* View Tabs */
.dsp-vtabs {
  display: flex; background: var(--bg-input); border-radius: 7px;
  padding: 3px; gap: 2px;
}
.dsp-vtab {
  padding: 6px 14px; border-radius: 5px; font-size: 13px;
  font-weight: 700; cursor: pointer; border: none;
  background: transparent; color: var(--text-muted);
  transition: all .12s; white-space: nowrap;
}
.dsp-vtab:hover { color: var(--text-secondary); }
.dsp-vtab.active {
  background: var(--bg-card); color: var(--text-primary);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.dsp-vtab__icon { font-size: 13px; margin-right: 4px; }

/* Stats badges */
.dsp-stats { display: flex; gap: 8px; }
.dsp-stat {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.dsp-stat__val { font-size: 14px; font-weight: 800; }

/* Tech filter select */
.dsp-tech-filter {
  position: relative;
}
.dsp-tech-filter__btn {
  padding: 5px 10px; background: var(--bg-input);
  border: 1px solid var(--border); border-radius: 7px;
  color: var(--text-primary); font-size: 13px; outline: none;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.dsp-tech-filter__btn:hover { background: var(--bg-hover); }
.dsp-tech-filter__arrow { font-size: 10px; color: var(--text-muted); }
.dsp-tech-filter__menu {
  position: absolute; top: 100%; right: 0; margin-top: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,.12);
  min-width: 180px; z-index: 50; padding: 4px 0;
  max-height: 300px; overflow-y: auto;
}
.dsp-tech-filter__item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; cursor: pointer; font-size: 13px;
  color: var(--text-primary); transition: background .08s;
}
.dsp-tech-filter__item:hover { background: var(--bg-hover); }
.dsp-tech-filter__item input[type="checkbox"] {
  width: 15px; height: 15px; accent-color: #2563eb; cursor: pointer;
  flex-shrink: 0;
}
.dsp-tech-filter__item-avatar {
  width: 22px; height: 22px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; flex-shrink: 0;
}
.dsp-tech-filter__item-name { font-weight: 600; }
.dsp-tech-filter__divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
.dsp-tech-filter__all {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; cursor: pointer; font-size: 12px;
  font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .03em;
}
.dsp-tech-filter__all:hover { background: var(--bg-hover); color: var(--text-primary); }

/* ── Date Navigation Bar ────────────────────────────────────── */
.dsp-datebar {
  padding: 8px 20px;
  border-bottom: 1px solid var(--bg-input);
  background: var(--bg-card);
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0; gap: 10px;
}
.dsp-datebar__left { display: flex; align-items: center; gap: 8px; }
.dsp-datebar__right { display: flex; gap: 4px; flex-wrap: wrap; }
.dsp-date-arrow {
  width: 32px; height: 32px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--bg-input);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-secondary);
  transition: all .1s;
}
.dsp-date-arrow:hover { background: var(--bg-hover); }
.dsp-date-label {
  text-align: center; min-width: 150px;
}
.dsp-date-label__main {
  font-size: 16px; font-weight: 800; color: var(--text-primary);
}
.dsp-date-label__sub {
  font-weight: 500; color: var(--text-muted); margin-left: 6px; font-size: 13px;
}
.dsp-date-quick {
  padding: 5px 12px; border-radius: 6px; font-size: 12px;
  font-weight: 700; cursor: pointer; border: 1px solid var(--border);
  background: var(--bg-input); color: var(--text-secondary);
  transition: all .1s; white-space: nowrap;
}
.dsp-date-quick:hover { background: var(--bg-hover); }
.dsp-date-quick.active {
  background: var(--text-primary); color: var(--bg-card);
  border-color: var(--text-primary);
}
.dsp-date-quick__count {
  margin-left: 3px; font-size: 10px; font-weight: 800;
  opacity: .6;
}
.dsp-date-today {
  padding: 5px 12px; border-radius: 6px; font-size: 12px;
  font-weight: 700; cursor: pointer; border: 1px solid #bfdbfe;
  background: #eff6ff; color: #2563eb;
}
.dsp-date-today:hover { background: #dbeafe; }

/* ── Placing Banner ─────────────────────────────────────────── */
.dsp-placing {
  padding: 4px 14px; background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0;
}
.dsp-placing__text { font-size: 11px; font-weight: 700; color: #2563eb; }
.dsp-placing__cancel {
  padding: 2px 8px; border-radius: 4px; font-size: 10px;
  font-weight: 700; background: #fff; color: #2563eb;
  border: 1px solid #bfdbfe; cursor: pointer;
}

/* ── View Content Area ──────────────────────────────────────── */
.dsp-view {
  flex: 1; overflow: hidden;
  padding: 10px 20px 0;
}

/* ── Task Card (shared across views) ────────────────────────── */
.dsp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: 8px; padding: 8px 12px;
  cursor: pointer; margin-bottom: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: all .12s;
}
.dsp-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.dsp-card.done { opacity: .55; }
.dsp-card.past-due { background: #fffbeb; border-color: #fde68a; border-left-color: #f59e0b; }
.dsp-card__top { display: flex; justify-content: space-between; align-items: center; gap: 4px; }
.dsp-card__info { flex: 1; min-width: 0; display: flex; align-items: center; gap: 4px; }
.dsp-card__type-icon { font-size: 13px; flex-shrink: 0; }
.dsp-card__title {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dsp-card.done .dsp-card__title { text-decoration: line-through; }
.dsp-card__badges { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.dsp-card__late {
  font-size: 9px; background: #fef3c7; color: #b45309;
  padding: 1px 5px; border-radius: 4px; font-weight: 700;
}
.dsp-card__done-check { font-size: 11px; color: #16a34a; }
.dsp-card__bottom {
  display: flex; justify-content: space-between; align-items: center; margin-top: 4px;
}
.dsp-card__meta { display: flex; align-items: center; gap: 3px; min-width: 0; }
.dsp-card__vehicle {
  font-size: 11px; color: var(--text-muted); max-width: 140px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dsp-card__tech { font-size: 11px; font-weight: 700; }
.dsp-card__unassigned { font-size: 11px; font-weight: 700; color: #dc2626; }
.dsp-card__times { display: flex; gap: 5px; align-items: center; }
.dsp-card__time { font-size: 11px; color: var(--text-muted); }
.dsp-card__dur {
  font-size: 11px; color: var(--text-muted);
  background: var(--bg-input); padding: 1px 5px; border-radius: 3px;
}

/* Status badge (inline) */
.dsp-status {
  padding: 2px 7px; border-radius: 5px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; transition: all .1s;
  white-space: nowrap;
}
.dsp-status:hover { filter: brightness(.95); }
.dsp-status--pending    { background: #f1f5f9; color: #64748b; border-color: #cbd5e1; }
.dsp-status--active     { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.dsp-status--done       { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.dsp-status--unassigned { background: #f1f5f9; color: #64748b; border-color: #cbd5e1; }
.dsp-status--todo       { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }

/* ── Kanban View ────────────────────────────────────────────── */
.dsp-kanban {
  display: flex; gap: 10px; height: 100%;
  overflow: auto; padding: 0 2px 20px;
}
.dsp-kanban-col {
  flex: 1; min-width: 220px;
}
.dsp-kanban-col__header {
  padding: 6px 8px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.dsp-kanban-col__dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.dsp-kanban-col__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em;
}
.dsp-kanban-col__count {
  font-size: 11px; font-weight: 800; padding: 1px 6px; border-radius: 8px;
}
.dsp-kanban-col__body {
  border: 1.5px dashed rgba(0,0,0,.08); border-radius: 10px;
  padding: 6px; min-height: 80px;
  transition: background .1s;
}
.dsp-kanban-col__body.drag-over { background: var(--bg-input); }

/* ── Schedule View (per-tech) ───────────────────────────────── */
.dsp-schedule {
  display: grid; gap: 10px; height: 100%;
  overflow: auto; padding: 0 2px 20px;
}
.dsp-schedule-col {}
.dsp-schedule-col__header {
  padding: 6px 8px; margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid var(--text-muted);
}
.dsp-schedule-col__tech { display: flex; align-items: center; gap: 6px; }
.dsp-schedule-col__avatar {
  width: 32px; height: 32px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.dsp-schedule-col__name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.dsp-schedule-col__sub { font-size: 11px; color: var(--text-muted); }
.dsp-schedule__time-label {
  font-size: 11px; color: var(--text-muted); font-weight: 700;
  padding: 2px 0 1px 2px; display: flex; align-items: center; gap: 4px;
}
.dsp-schedule__time-line { flex: 1; height: 1px; background: var(--bg-input); }
.dsp-schedule__empty {
  text-align: center; padding: 14px; color: var(--text-muted);
  font-size: 10px; font-style: italic;
}

/* ── List View ──────────────────────────────────────────────── */
.dsp-list { overflow: auto; height: 100%; }
.dsp-list__sorts {
  display: flex; gap: 4px; margin-bottom: 6px;
}
.dsp-list__sort-btn {
  padding: 5px 12px; border-radius: 6px; font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  background: var(--bg-input); color: var(--text-secondary);
  border: none; cursor: pointer; transition: all .1s;
}
.dsp-list__sort-btn.active {
  background: var(--text-primary); color: var(--bg-card);
}
.dsp-list-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.dsp-list-table th {
  padding: 8px 12px; text-align: left; font-size: 11px;
  font-weight: 800; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer; border-bottom: 1.5px solid var(--border);
  white-space: nowrap; background: var(--bg-card);
  position: sticky; top: 0; z-index: 2;
}
.dsp-list-table td {
  padding: 8px 12px; border-bottom: 1px solid var(--bg-input);
  color: var(--text-primary); vertical-align: middle;
}
.dsp-list-table tr { cursor: pointer; transition: background .08s; }
.dsp-list-table tbody tr:hover { background: var(--bg-input); }
.dsp-list-table tr.done { opacity: .55; }
.dsp-list__type-badge {
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 5px; white-space: nowrap;
}

/* ── Timeline View ──────────────────────────────────────────── */
.dsp-timeline {
  overflow: auto; height: 100%;
  -webkit-overflow-scrolling: touch;
}
.dsp-tl-wrap { display: flex; min-height: 100%; }
.dsp-tl-labels {
  flex-shrink: 0; position: sticky; left: 0; z-index: 5;
  background: var(--bg-base); border-right: 1px solid var(--border);
}
.dsp-tl-labels__spacer {
  height: 26px; border-bottom: 1px solid var(--border);
}
.dsp-tl-label {
  display: flex; align-items: center; gap: 6px;
  padding: 0 8px; border-bottom: 2px solid var(--border);
}
.dsp-tl-label__avatar {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.dsp-tl-label__name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.dsp-tl-label__sub { font-size: 10px; color: var(--text-muted); }
.dsp-tl-body { flex: 1; position: relative; }
.dsp-tl-hours {
  display: flex; height: 26px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 4; background: var(--bg-base);
}
.dsp-tl-hour {
  flex-shrink: 0; display: flex; align-items: flex-end;
  justify-content: flex-end; padding-bottom: 2px; padding-right: 4px;
}
.dsp-tl-hour__text {
  font-size: 11px; color: var(--text-secondary); font-weight: 700;
}
.dsp-tl-row {
  position: relative; border-bottom: 2px solid var(--border);
}
.dsp-tl-slot {
  position: absolute; top: 0; height: 100%;
  transition: background .06s;
}
/* Single solid drag overlay (shared by timeline + weekly) */
.dsp-drag-overlay {
  background: rgba(59,130,246,.18);
  border: 2px solid rgba(59,130,246,.5);
  border-radius: 5px;
  z-index: 7; pointer-events: none;
}
.dsp-tl-slot__ghost {
  position: absolute; inset: 1px; border-radius: 4px;
  border: 2px dashed #3b82f6; opacity: .5;
}
.dsp-tl-slot__time-hint {
  position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
  font-size: 7px; color: #3b82f6; font-weight: 700;
  background: #eff6ff; padding: 0 3px; border-radius: 2px; white-space: nowrap;
}
.dsp-tl-off-hours {
  position: absolute; top: 0; height: 100%;
  background: var(--bg-input); opacity: .5;
}
.dsp-tl-now {
  position: absolute; top: 0; bottom: 0; width: 2.5px;
  background: #2563eb; z-index: 8; pointer-events: none;
}
.dsp-tl-now__label {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: #2563eb; color: #fff; font-size: 8px; font-weight: 800;
  padding: 2px 5px; border-radius: 0 0 4px 4px;
  white-space: nowrap; line-height: 12px;
  box-shadow: 0 2px 4px rgba(37,99,235,.27);
}
.dsp-tl-now__arrow {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid #2563eb;
}

/* Timeline unscheduled row area */
.dsp-tl-row { overflow: visible; }

/* Timeline task block */
.dsp-tl-block {
  position: absolute; top: 3px; border-radius: 5px;
  padding: 2px 5px; cursor: grab; z-index: 3;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .08s, opacity .1s;
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
}
.dsp-tl-block:hover { transform: scaleY(1.06); z-index: 6; }
.dsp-tl-block.dragging { opacity: .4; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.dsp-tl-block.done { opacity: .5; }
.dsp-tl-block.conflict { box-shadow: 0 0 0 1.5px rgba(251,191,36,.27); }
.dsp-tl-block__top { display: flex; align-items: center; gap: 2px; overflow: hidden; min-width: 0; }
.dsp-tl-block__title {
  font-size: 11px; font-weight: 700; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.dsp-tl-block.done .dsp-tl-block__title { text-decoration: line-through; }
.dsp-tl-block__vehicle {
  font-size: 10px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dsp-tl-block__footer {
  display: flex; justify-content: space-between; align-items: center; margin-top: 1px;
}
.dsp-tl-block__time-info { font-size: 9px; color: var(--text-muted); }
.dsp-tl-block__techs { display: flex; gap: 2px; }
.dsp-tl-block__tech-ini { font-size: 9px; font-weight: 800; }

/* Resize handles */
.dsp-resize-handle {
  position: absolute; z-index: 5; opacity: 0; transition: opacity .12s;
}
.dsp-tl-block:hover .dsp-resize-handle,
.dsp-weekly__block:hover .dsp-resize-handle,
.dsp-resize-handle.active { opacity: 1; }
.dsp-resize-handle--right {
  top: 2px; bottom: 2px; right: 0; width: 6px; cursor: ew-resize;
  border-radius: 0 4px 4px 0;
  background: rgba(59,130,246,.35);
}
.dsp-resize-handle--right:hover, .dsp-resize-handle--right.active {
  background: rgba(59,130,246,.6); width: 8px;
}
.dsp-resize-handle--bottom {
  left: 2px; right: 2px; bottom: 0; height: 6px; cursor: ns-resize;
  border-radius: 0 0 4px 4px;
  background: rgba(59,130,246,.35);
}
.dsp-resize-handle--bottom:hover, .dsp-resize-handle--bottom.active {
  background: rgba(59,130,246,.6); height: 8px;
}
.dsp-tl-block.resizing, .dsp-weekly__block.resizing {
  z-index: 10; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* ── Weekly View ────────────────────────────────────────────── */
.dsp-weekly { height: 100%; overflow: auto; -webkit-overflow-scrolling: touch; }
.dsp-weekly__grid { display: flex; flex-direction: column; min-height: 100%; position: relative; }
.dsp-weekly__day-headers {
  display: flex; position: sticky; top: 0; z-index: 8; background: var(--bg-base);
  border-bottom: 1.5px solid var(--border);
}
.dsp-weekly__corner {
  flex-shrink: 0; position: sticky; left: 0; z-index: 9;
  background: var(--bg-base); border-right: 1px solid var(--border);
}
.dsp-weekly__day-hdr {
  padding: 6px 8px; border-right: 1px solid var(--bg-input);
  text-align: center; cursor: pointer; transition: background .1s;
}
.dsp-weekly__day-hdr:hover { background: var(--bg-hover); }
.dsp-weekly__day-hdr.today { background: #eff6ff; }
.dsp-weekly__day-name {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .04em;
}
.dsp-weekly__day-hdr.today .dsp-weekly__day-name { color: #2563eb; }
.dsp-weekly__day-num { font-size: 17px; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.dsp-weekly__day-num.today { color: #2563eb; }
.dsp-weekly__day-count { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.dsp-weekly__tech-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: var(--bg-card);
  border-top: 2px solid var(--border); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 6; cursor: pointer;
}
.dsp-weekly__tech-header:hover { background: var(--bg-hover); }
.dsp-weekly__tech-header.not-first { margin-top: 2px; }
.dsp-weekly__tech-header-avatar {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.dsp-weekly__tech-header-info { display: flex; align-items: baseline; gap: 8px; }
.dsp-weekly__tech-header-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.dsp-weekly__tech-header-stats { font-size: 11px; color: var(--text-muted); }
.dsp-weekly__tech-row {
  display: flex;
}
.dsp-weekly__tech-label {
  flex-shrink: 0; position: sticky; left: 0; z-index: 4;
  background: var(--bg-base); border-right: 1px solid var(--border);
}
.dsp-weekly__day-col {
  position: relative; border-right: 1px solid var(--bg-input);
}
.dsp-weekly__day-col.today { background: #f8fbff; }
.dsp-weekly__hour-line {
  border-bottom: 1px solid var(--bg-input);
}
/* Weekly drop slots */
.dsp-weekly-slot {
  z-index: 1;
}
.dsp-weekly__block {
  position: absolute; left: 3px; right: 3px; border-radius: 5px;
  padding: 2px 5px; cursor: grab; z-index: 3;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .08s, opacity .1s;
  line-height: 1.3;
}
.dsp-weekly__block:hover { transform: scale(1.02); z-index: 6; box-shadow: 0 3px 10px rgba(0,0,0,.1); }
.dsp-weekly__block.dragging { opacity: .4; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.dsp-weekly__block.done { opacity: .5; }
.dsp-weekly__block.done .dsp-tl-block__title { text-decoration: line-through; }

.dsp-weekly__time-gutter {
  flex-shrink: 0; background: var(--bg-base); border-right: 1px solid var(--border);
}
.dsp-weekly__time-cell {
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 2px 4px 0 0;
  font-size: 11px; color: var(--text-secondary); font-weight: 700;
  border-bottom: 1px solid var(--bg-input); box-sizing: border-box;
}

/* ── Monthly View ──────────────────────────────────────────── */
.dsp-monthly { height: 100%; overflow: auto; padding: 0 0 20px; }
.dsp-monthly__dow {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 6px;
}
.dsp-monthly__dow-cell {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .05em; padding: 4px 0;
}
.dsp-monthly__week {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 3px;
}
.dsp-monthly__cell {
  min-height: 90px; padding: 5px 6px; border-radius: 8px; cursor: pointer;
  background: var(--bg-card); border: 1.5px solid var(--bg-input);
  display: flex; flex-direction: column;
  transition: border-color .1s, box-shadow .1s;
}
.dsp-monthly__cell:hover { border-color: var(--text-muted); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.dsp-monthly__cell.empty { background: var(--bg-base); border-color: transparent; cursor: default; min-height: 90px; }
.dsp-monthly__cell.today { background: #eff6ff; border-color: #2563eb; }
.dsp-monthly__cell.selected { border-color: var(--text-muted); }
.dsp-monthly__cell-hdr {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px;
}
.dsp-monthly__cell-num {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
}
.dsp-monthly__cell-num.today {
  font-weight: 800; color: #fff; background: #2563eb;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.dsp-monthly__cell-count { font-size: 10px; font-weight: 700; color: var(--text-muted); }
.dsp-monthly__cell-tasks { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 2px; }
.dsp-monthly__mini-card {
  padding: 2px 5px; border-radius: 4px; font-size: 10px; font-weight: 600;
  border-left: 2.5px solid; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; line-height: 18px; cursor: pointer;
}
.dsp-monthly__mini-card.done { text-decoration: line-through; opacity: .6; }
.dsp-monthly__mini-card:hover { filter: brightness(.95); }
.dsp-monthly__more { font-size: 10px; color: var(--text-muted); font-weight: 700; text-align: center; margin-top: 2px; }
.dsp-monthly__dots { display: flex; gap: 2px; margin-top: 3px; justify-content: center; }
.dsp-monthly__dot { width: 6px; height: 6px; border-radius: 50%; }

/* ── Bottom Tray ────────────────────────────────────────────── */
.dsp-tray {
  flex-shrink: 0; background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column;
  box-shadow: 0 -2px 8px rgba(0,0,0,.04); overflow: hidden;
}
.dsp-tray__handle {
  height: 10px; cursor: ns-resize;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg-input), var(--bg-card));
  border-bottom: 1px solid var(--bg-input);
  touch-action: none;
}
.dsp-tray__handle-bar {
  width: 32px; height: 3px; border-radius: 2px; background: var(--text-muted);
  opacity: .5;
}
.dsp-tray__header {
  padding: 3px 14px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; user-select: none;
  flex-shrink: 0;
}
.dsp-tray__header-left { display: flex; align-items: center; gap: 6px; }
.dsp-tray__add-btn {
  height: 30px; border-radius: 7px; padding: 0 12px 0 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none; color: #fff; font-size: 13px; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 6px rgba(59,130,246,.2);
  line-height: 1; transition: all .15s; white-space: nowrap;
}
.dsp-tray__add-btn:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(59,130,246,.3); }
.dsp-tray__add-btn span { font-size: 17px; font-weight: 800; line-height: 1; }
.dsp-tray__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em;
}
.dsp-tray__count {
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 1px 6px; border-radius: 8px; min-width: 16px;
  text-align: center; line-height: 18px;
}
.dsp-tray__expand-hint {
  font-size: 9px; color: var(--text-muted); margin-left: 2px;
}
.dsp-tray__header-right { display: flex; align-items: center; gap: 6px; }
.dsp-tray__drop-hint {
  font-size: 9px; color: #dc2626; font-weight: 700;
  background: #fef2f2; padding: 1px 6px; border-radius: 4px;
  border: 1px dashed #fecaca;
}
.dsp-tray__arrow {
  font-size: 12px; color: var(--text-muted);
  transition: transform .2s; line-height: 1;
}
.dsp-tray__arrow.open { transform: rotate(180deg); }

/* Tray tiles */
.dsp-tray__tiles {
  flex: 1; padding: 6px 12px;
  -webkit-overflow-scrolling: touch;
  display: flex; gap: 6px;
  align-items: flex-start; align-content: flex-start;
}
.dsp-tray__tiles.scroll-h { overflow-x: auto; overflow-y: hidden; flex-wrap: nowrap; }
.dsp-tray__tiles.scroll-v { overflow-x: hidden; overflow-y: auto; flex-wrap: wrap; }
.dsp-tray__empty {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 11px; min-height: 40px;
}

/* Tray tile card */
.dsp-tray-tile {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: 8px; padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: box-shadow .12s, transform .12s;
  cursor: grab;
}
.dsp-tray-tile:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.07);
  transform: translateY(-1px);
}
.dsp-tray-tile.selected {
  border-color: #3b82f6; box-shadow: 0 0 0 2px #3b82f6;
}
.dsp-tray-tile__type {
  display: flex; align-items: center; gap: 3px; margin-bottom: 2px;
}
.dsp-tray-tile__type-icon { font-size: 13px; }
.dsp-tray-tile__type-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.dsp-tray-tile__title {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.dsp-tray-tile__vehicle {
  font-size: 11px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}
.dsp-tray-tile__dur-bar {
  margin-top: 4px; display: flex; align-items: center; gap: 4px;
}
.dsp-tray-tile__bar {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--bg-input); overflow: hidden;
}
.dsp-tray-tile__bar-fill { height: 100%; border-radius: 2px; opacity: .5; }
.dsp-tray-tile__dur-text { font-size: 10px; font-weight: 700; color: var(--text-secondary); white-space: nowrap; }
.dsp-tray-tile__dur-unit { font-size: 8px; font-weight: 600; color: var(--text-muted); }
.dsp-tray-tile__mob-hint {
  margin-top: 2px; font-size: 8px; font-weight: 600;
  text-align: center; color: var(--text-muted);
}

/* ── Quick Add Popup ────────────────────────────────────────── */
.dsp-quickadd-overlay { position: fixed; inset: 0; z-index: var(--z-overlay); }
.dsp-quickadd {
  position: fixed;
  background: var(--bg-card); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 0 0 1px var(--border);
  padding: 10px; width: 240px;
  display: flex; flex-direction: column; gap: 6px;
}
.dsp-quickadd__title {
  padding: 2px 6px;
  font-size: 11px; font-weight: 800; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
}
/* Themed per-type buttons */
.new-task-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; cursor: pointer;
  transition: all .12s; width: 100%;
  text-align: left; border: none;
}
.new-task-btn:hover { transform: scale(1.02); filter: brightness(1.03); }
.ntb-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ntb-icon svg { width: 15px; height: 15px; }
.ntb-body { flex: 1; min-width: 0; }
.ntb-label {
  font-size: 13px; font-weight: 700; line-height: 1.2;
}

/* ── Editor Modal ───────────────────────────────────────────── */
.dsp-editor-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.2);
  z-index: var(--z-modal); display: flex;
  align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}
.dsp-editor {
  background: var(--bg-card); border-radius: 14px;
  width: 460px; max-height: 80vh; overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.dsp-editor__header {
  padding: 12px 16px; border-bottom: 1px solid var(--bg-input);
  display: flex; justify-content: space-between; align-items: center;
}
.dsp-editor__title {
  margin: 0; font-size: 16px; font-weight: 800; color: var(--text-primary);
}
.dsp-editor__close {
  background: var(--bg-input); border: none; color: var(--text-muted);
  font-size: 14px; cursor: pointer; width: 26px; height: 26px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.dsp-editor__body {
  padding: 12px 16px; display: flex; flex-direction: column; gap: 10px;
}
.dsp-editor__label {
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 4px; display: block;
}
.dsp-editor__input {
  width: 100%; padding: 9px 12px;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 14px;
  box-sizing: border-box; outline: none;
  transition: border-color .15s;
}
.dsp-editor__input:focus { border-color: var(--border-hover); }
.dsp-editor__row { display: grid; gap: 8px; }
.dsp-editor__row--2 { grid-template-columns: 1fr 1fr; }
.dsp-editor__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.dsp-editor__tech-list { display: flex; gap: 4px; flex-wrap: wrap; }
.dsp-editor__tech-btn {
  padding: 6px 14px; border-radius: 7px; font-size: 13px;
  font-weight: 700; cursor: pointer; min-height: 32px;
  background: var(--bg-input); color: var(--text-muted);
  border: 1.5px solid var(--border); transition: all .12s;
}
.dsp-editor__tech-btn.active {
  background: var(--bg-input); border-color: currentColor;
}
.dsp-editor__block-all {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 11px; color: var(--text-secondary);
}
.dsp-editor__footer {
  padding: 10px 16px; border-top: 1px solid var(--bg-input);
  display: flex; justify-content: space-between;
}
.dsp-editor__delete {
  padding: 8px 16px; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 7px; color: #dc2626; font-size: 13px; font-weight: 700;
  cursor: pointer;
}
.dsp-editor__delete:hover { background: #fee2e2; }
.dsp-editor__actions { display: flex; gap: 6px; }
.dsp-editor__cancel {
  padding: 8px 16px; background: var(--bg-input);
  border: 1px solid var(--border); border-radius: 7px;
  color: var(--text-secondary); font-size: 13px; cursor: pointer;
}
.dsp-editor__save {
  padding: 8px 18px; background: var(--text-primary);
  border: none; border-radius: 7px; color: var(--bg-card);
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.dsp-editor__save:hover { opacity: .9; }

/* ── Create Task Modal ─────────────────────────────────────── */
.dsp-create-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.2);
  z-index: var(--z-modal); display: flex;
  align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}
.dsp-create-box {
  background: var(--bg-card); border-radius: 14px;
  width: 500px; max-height: 85vh; display: flex; flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.dsp-create__header {
  padding: 14px 18px; border-bottom: 1px solid var(--bg-input);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.dsp-create__title {
  margin: 0; font-size: 17px; font-weight: 800; color: var(--text-primary);
}
.dsp-create__close {
  background: var(--bg-input); border: none; color: var(--text-muted);
  font-size: 14px; cursor: pointer; width: 26px; height: 26px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.dsp-create__body {
  padding: 14px 18px; display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto; flex: 1; min-height: 0;
}
.dsp-create__field { display: flex; flex-direction: column; gap: 4px; }
.dsp-create__label {
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: .04em;
}
.dsp-create__input {
  width: 100%; padding: 9px 12px;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 14px;
  box-sizing: border-box; outline: none; transition: border-color .15s;
}
.dsp-create__input:focus { border-color: var(--border-hover); }
.dsp-create__row { display: grid; gap: 8px; }
.dsp-create__row--2 { grid-template-columns: 1fr 1fr; }
.dsp-create__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.dsp-create__checklist {
  max-height: 200px; overflow-y: auto; border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg-input);
}
.dsp-create__check-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; cursor: pointer; font-size: 13px;
  border-bottom: 1px solid var(--border); transition: background .1s;
}
.dsp-create__check-item:last-child { border-bottom: none; }
.dsp-create__check-item:hover { background: var(--bg-hover); }
.dsp-create__check-item input[type="checkbox"] { flex-shrink: 0; }
.dsp-create__check-item span { flex: 1; color: var(--text-primary); font-weight: 500; }
.dsp-create__check-item .dsp-create__check-source {
  font-size: 11px; color: var(--text-muted); margin-left: auto; flex: none;
}
.dsp-create__quick-add {
  display: flex; gap: 6px; margin-top: 6px;
}
.dsp-create__quick-add input {
  flex: 1; padding: 7px 10px; font-size: 12px;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--bg-base); color: var(--text-primary); outline: none;
}
.dsp-create__quick-add button {
  padding: 6px 12px; font-size: 11px; font-weight: 600;
  border: none; border-radius: 6px; background: #3b82f6; color: #fff;
  cursor: pointer; white-space: nowrap;
}
.dsp-create__tech-list { display: flex; gap: 4px; flex-wrap: wrap; }
.dsp-create__tech-btn {
  padding: 6px 14px; border-radius: 7px; font-size: 13px;
  font-weight: 700; cursor: pointer; min-height: 32px;
  background: var(--bg-input); color: var(--text-muted);
  border: 1.5px solid var(--border); transition: all .12s;
}
.dsp-create__tech-btn.active {
  background: var(--bg-input); border-color: currentColor;
}
.dsp-create__footer {
  padding: 10px 18px; border-top: 1px solid var(--bg-input);
  display: flex; justify-content: flex-end; gap: 6px; flex-shrink: 0;
}
.dsp-create__cancel {
  padding: 8px 16px; background: var(--bg-input);
  border: 1px solid var(--border); border-radius: 7px;
  color: var(--text-secondary); font-size: 13px; cursor: pointer;
}
.dsp-create__submit {
  padding: 8px 18px; background: var(--text-primary);
  border: none; border-radius: 7px; color: var(--bg-card);
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.dsp-create__submit:hover { opacity: .9; }
.dsp-create__empty {
  padding: 14px; font-size: 13px; color: var(--text-muted);
  border: 1px dashed var(--border); border-radius: 8px; text-align: center;
}
.dsp-create__next {
  width: 100%; padding: 10px; font-size: 13px; font-weight: 700;
  background: #3b82f6; color: #fff; border: none; border-radius: 8px;
  cursor: pointer; margin-top: 4px;
}
.dsp-create__next:hover { opacity: .9; }
.dsp-create__divider {
  border: none; border-top: 1px solid var(--border); margin: 4px 0;
}

/* ── Dark Mode Overrides ────────────────────────────────────── */
[data-theme="dark"] .dsp-card.past-due { background: #422006; border-color: #854d0e; }
[data-theme="dark"] .dsp-card.past-due .dsp-card__late { background: #854d0e; color: #fde68a; }
[data-theme="dark"] .dsp-placing { background: #1e3a5f; border-color: #1d4ed8; }
[data-theme="dark"] .dsp-placing__text { color: #93c5fd; }
[data-theme="dark"] .dsp-date-today { background: #1e3a5f; border-color: #1d4ed8; color: #93c5fd; }
[data-theme="dark"] .dsp-quickadd {
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 0 1px var(--border);
}
[data-theme="dark"] .dsp-drag-overlay { background: rgba(59,130,246,.25); border-color: rgba(59,130,246,.6); }
[data-theme="dark"] .dsp-tray__drop-hint { background: #3f1515; color: #fca5a5; border-color: #7f1d1d; }
[data-theme="dark"] .dsp-status--pending { background: #1e293b; color: #94a3b8; border-color: #334155; }
[data-theme="dark"] .dsp-status--active  { background: #422006; color: #fbbf24; border-color: #854d0e; }
[data-theme="dark"] .dsp-status--done    { background: #052e16; color: #4ade80; border-color: #166534; }
[data-theme="dark"] .dsp-status--todo    { background: #1e3a5f; color: #60a5fa; border-color: #1d4ed8; }
[data-theme="dark"] .dsp-editor__delete { background: #3f1515; border-color: #7f1d1d; color: #fca5a5; }
[data-theme="dark"] .dsp-weekly__day-hdr.today { background: #1e3a5f; }
[data-theme="dark"] .dsp-weekly__day-col.today { background: rgba(30,58,95,.3); }
[data-theme="dark"] .dsp-monthly__cell.today { background: #1e3a5f; border-color: #1d4ed8; }
[data-theme="dark"] .dsp-monthly__cell-num.today { background: #2563eb; }
[data-theme="dark"] .dsp-weekly__tech-header { background: var(--bg-card); border-top-color: var(--border); }

/* ── Responsive / Mobile ────────────────────────────────────── */
@media (max-width: 767px) {
  /* Header: compact single row, hide title */
  .dsp-header { padding: 6px 10px; min-height: 40px; gap: 8px; }
  .dsp-header__title { display: none; }
  .dsp-header__sep { display: none; }
  .dsp-vtab { padding: 6px 12px; font-size: 13px; }
  .dsp-vtab__label { display: none; }
  .dsp-vtab__icon { margin-right: 0; font-size: 15px; }
  .dsp-tech-filter__btn { font-size: 12px; padding: 4px 8px; }

  /* Datebar: collapse quick-jumps, tappable date area */
  .dsp-datebar { padding: 6px 10px; flex-wrap: wrap; gap: 6px; }
  .dsp-datebar__left { gap: 6px; }
  .dsp-date-arrow { width: 36px; height: 36px; font-size: 18px; }
  .dsp-date-label { min-width: 110px; cursor: pointer; }
  .dsp-date-label__main { font-size: 15px; }
  .dsp-date-label__sub { font-size: 11px; }
  .dsp-datebar__right {
    width: 100%; overflow: hidden;
    max-height: 0; opacity: 0;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .dsp-datebar__right.expanded {
    max-height: 50px; opacity: 1;
  }
  .dsp-date-quick { padding: 6px 10px; font-size: 12px; flex: 1; text-align: center; }
  .dsp-date-today { padding: 4px 10px; font-size: 12px; }

  /* View area */
  .dsp-view { padding: 6px 8px 0; }
  .dsp-stats { display: none; }

  /* Kanban stacks vertically */
  .dsp-kanban { flex-direction: column; gap: 8px; }
  .dsp-kanban-col { min-width: auto; }
  .dsp-kanban-col__body { min-height: 30px; }

  /* Cards: bigger touch targets */
  .dsp-card { padding: 10px 12px; margin-bottom: 6px; }
  .dsp-card__title { font-size: 14px; }
  .dsp-card__vehicle { font-size: 12px; }
  .dsp-card__time, .dsp-card__dur { font-size: 12px; }

  /* Schedule */
  .dsp-schedule { grid-template-columns: 1fr; }

  /* Timeline */
  .dsp-tl-labels { width: 42px; }
  .dsp-tl-label { padding: 0 2px; gap: 0; }
  .dsp-tl-label__name,
  .dsp-tl-label__sub { display: none; }
  .dsp-tl-label__avatar { width: 30px; height: 30px; font-size: 11px; }
  .dsp-tl-hour__text { font-size: 9px; }
  .dsp-tl-block__title { font-size: 10px; }
  .dsp-tl-block__vehicle { display: none; }

  /* Editor: bottom sheet */
  .dsp-editor-overlay { align-items: flex-end; }
  .dsp-editor { width: 100%; max-height: 88vh; border-radius: 16px 16px 0 0; }

  /* Quick-add: full-width bottom sheet */
  .dsp-quickadd {
    position: fixed; bottom: 0; left: 0; right: 0;
    width: 100%; border-radius: 16px 16px 0 0;
    padding: 12px 16px 24px;
    max-height: 70vh; overflow-y: auto;
  }
  .new-task-btn { padding: 12px 14px; }
  .ntb-icon { width: 40px; height: 40px; }
  .ntb-label { font-size: 15px; }

  /* Tray: bigger tiles, tap hints */
  .dsp-tray-tile {
    cursor: pointer; padding: 8px 10px;
  }
  .dsp-tray-tile__title { font-size: 14px; }
  .dsp-tray-tile__mob-hint { font-size: 10px; padding: 2px 0; }
  .dsp-tray__add-btn { height: 34px; font-size: 14px; padding: 0 14px 0 10px; }
  .dsp-tray__add-btn span { font-size: 18px; }

  /* Weekly mobile */
  .dsp-weekly__tech-header { padding: 6px 8px; gap: 6px; }
  .dsp-weekly__tech-header-avatar { width: 24px; height: 24px; font-size: 9px; }
  .dsp-weekly__tech-header-name { font-size: 12px; }
  .dsp-weekly__tech-header-stats { font-size: 10px; }
  .dsp-weekly__day-hdr { padding: 4px 4px; }
  .dsp-weekly__day-num { font-size: 14px; }
  .dsp-weekly__day-name { font-size: 9px; }
  .dsp-weekly__day-count { font-size: 8px; }
  .dsp-weekly__block { padding: 2px 4px; border-radius: 4px; }

  /* Monthly mobile */
  .dsp-monthly__cell { min-height: 60px; padding: 3px 4px; }
  .dsp-monthly__cell-num { font-size: 11px; }
  .dsp-monthly__cell-num.today { width: 20px; height: 20px; font-size: 10px; }
  .dsp-monthly__mini-card { font-size: 9px; line-height: 15px; padding: 1px 3px; }
  .dsp-monthly__dow-cell { font-size: 9px; }
  .dsp-monthly__dot { width: 5px; height: 5px; }
}
