/* ============================================================
   Dashboard – Anthropic monochrome override
   ============================================================ */

/* ---- Tokens ---- */
.dash-page {
    --dash-text: #111;
    --dash-text-secondary: #555;
    --dash-text-muted: #999;
    --dash-border: #e2e2e2;
    --dash-border-light: #eee;
}

/* ---- KPI row (used on Bookings & Schedule page) ---- */
.dash-kpi-row {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
}
.dash-kpi {
    flex: 1;
    padding: 0 1.5rem;
    border-right: 1px solid var(--dash-border-light, #eee);
}
.dash-kpi:first-child {
    padding-left: 0;
}
.dash-kpi:last-child {
    border-right: none;
    padding-right: 0;
}
.dash-kpi-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dash-text, #111);
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.dash-kpi-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--dash-text-muted, #999);
    margin-bottom: 0.125rem;
}
.dash-kpi-change {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.dash-kpi-change.positive { color: #16a34a; }
.dash-kpi-change.negative { color: #dc2626; }
.dash-kpi-change.neutral  { color: var(--dash-text-muted, #999); }

/* ---- Header ---- */
.dash-header {
    margin-bottom: 1.5rem;
}
.dash-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dash-text);
    letter-spacing: -0.025em;
    margin-bottom: 0.25rem;
}
.dash-header p {
    color: var(--dash-text-secondary);
    font-size: 0.9375rem;
}

/* ---- Demo Card ---- */
.dash-demo-card {
    border-bottom: 1px solid var(--dash-border-light);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}
.dash-demo-content {
    padding-right: 5rem;
    margin-bottom: 0.75rem;
}
.dash-demo-title {
    font-weight: 600;
    color: var(--dash-text);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.dash-demo-desc {
    color: var(--dash-text-secondary);
    font-size: 0.875rem;
}
.dash-btn-dismiss {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 1px solid var(--dash-border);
    border-radius: 6px;
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
    cursor: pointer;
}
.dash-btn-dismiss:hover {
    background: #f5f5f5;
    color: var(--dash-text-secondary);
}
.dash-demo-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.dash-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}
.dash-btn-primary:hover {
    background: #333;
}
.dash-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: #fff;
    color: var(--dash-text);
    border: 1px solid var(--dash-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}
.dash-btn-outline:hover {
    background: #f5f5f5;
}
.dash-btn-sm {
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
}

/* ---- Needs Attention Bar ---- */
.dash-attention {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.dash-attention-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: #fff;
    border: 1px solid var(--dash-border);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dash-text);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.dash-attention-item:hover {
    border-color: #ccc;
    background: #fafafa;
}
.dash-attention-arrow {
    color: var(--dash-text-muted) !important;
    margin-left: 0.25rem;
}
.dash-attention-clear {
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
    border: none;
}
.dash-attention-clear i,
.dash-attention-clear svg {
    color: #16a34a;
}

/* ---- Chart ---- */
.dash-chart-tabs {
    display: flex;
    gap: 0.25rem;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 3px;
}
.dash-chart-tab {
    padding: 0.3125rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dash-text-muted);
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.dash-chart-tab:hover {
    color: var(--dash-text-secondary);
}
.dash-chart-tab.active {
    background: #111;
    color: #fff;
    font-weight: 600;
}
.dash-chart-legend {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.875rem;
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
}
.dash-legend-swatch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 0.375rem;
}
.dash-legend-line {
    display: inline-block;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: #111;
    vertical-align: middle;
    margin-right: 0.375rem;
}
[data-theme="dark-mode"] .dash-legend-line {
    background: #faf8f5;
}
.dash-chart-canvas {
    position: relative;
    width: 100%;
    height: 220px;
}
.dash-chart-canvas canvas {
    width: 100%;
    height: 100%;
}
.dash-chart-summary {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--dash-border-light);
    display: flex;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
    flex-wrap: wrap;
}
.dash-chart-summary strong {
    color: var(--dash-text);
    font-weight: 600;
}

/* ---- Sections ---- */
.dash-section {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--dash-border-light);
}
.dash-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.dash-section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dash-text);
    margin: 0;
}
.dash-section-header h2 i,
.dash-section-header h2 svg {
    color: var(--dash-text-muted);
    width: 16px;
    height: 16px;
}
.dash-section-count {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dash-text-muted);
}
.dash-section-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dash-text-secondary);
    cursor: pointer;
    text-decoration: none;
}
.dash-section-link:hover {
    color: var(--dash-text);
}

/* ---- Schedule Grid (Today + Week Ahead side-by-side) ---- */
.dash-schedule-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--dash-border-light);
}
.dash-schedule-grid .dash-section {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Next job teaser */
.dash-next-job {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dash-text-secondary);
}

/* ---- Today's Jobs ---- */
.dash-today-list {
    display: flex;
    flex-direction: column;
}
.dash-today-row {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dash-border-light);
    cursor: pointer;
    transition: background 0.15s;
}
.dash-today-row:last-child {
    border-bottom: none;
}
.dash-today-row:hover {
    background: #fafafa;
}
.dash-today-time {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dash-text);
}
.dash-today-name {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--dash-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-today-job {
    font-size: 0.8125rem;
    color: var(--dash-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-empty-inline {
    padding: 1rem 0;
    text-align: center;
    color: var(--dash-text-muted);
    font-size: 0.875rem;
}

/* ---- This Week Metrics ---- */
.dash-metrics-row {
    display: flex;
    gap: 0;
}
.dash-metric {
    flex: 1;
    padding: 0 1.5rem;
    border-right: 1px solid var(--dash-border-light);
}
.dash-metric:first-child {
    padding-left: 0;
}
.dash-metric:last-child {
    border-right: none;
    padding-right: 0;
}
.dash-metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dash-text);
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.dash-metric-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--dash-text-muted);
    margin-top: 0.25rem;
}
.dash-metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.375rem;
}
.dash-metric-trend.positive { color: #16a34a; }
.dash-metric-trend.negative { color: #dc2626; }
.dash-metric-trend.neutral  { color: var(--dash-text-muted); }
.dash-metric-trend i,
.dash-metric-trend svg {
    width: 14px;
    height: 14px;
}

/* ---- Week Ahead Schedule Strip ---- */
.dash-week-dots { display: none; }
.dash-week-mobile { display: none; }
.dash-week-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--dash-border);
    border-radius: 10px;
    overflow: visible;
}
.dash-week-day {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    border-right: 1px solid var(--dash-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.dash-week-day:last-child {
    border-right: none;
}
.dash-week-day.is-empty {
    opacity: 0.55;
}
.dash-week-day.is-today {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}
.dash-week-day.is-today .dash-week-day-num {
    background: #111;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
}
.dash-week-day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1875rem;
}
.dash-week-day-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--dash-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.dash-week-day-num {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dash-text);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-week-day-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.1875rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}
.dash-week-day-badge.has-jobs {
    background: #f0fdf4;
    color: #16a34a;
}
.dash-week-day-badge.at-capacity {
    background: #fff7ed;
    color: #d97706;
}
.dash-week-day-badge.no-jobs {
    background: transparent;
    color: var(--dash-text-muted, #bbb);
    font-weight: 500;
}
.dash-week-day-slots {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}
.dash-week-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.3125rem 0.25rem;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s;
}
.dash-week-slot:hover {
    background: #f5f5f5;
}
.dash-week-slot-time {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--dash-text);
}
.dash-week-slot-type {
    font-size: 0.625rem;
    color: var(--dash-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
}
.dash-week-slot-more {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--dash-text-muted);
    text-align: center;
    padding: 0.125rem 0;
}
.dash-week-slot-free {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0;
    color: #d4d4d4;
}
.dash-week-slot-free i,
.dash-week-slot-free svg {
    width: 14px;
    height: 14px;
}

/* ---- Lead List ---- */
.dash-lead-list {
    display: flex;
    flex-direction: column;
}
.dash-lead-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dash-border-light);
    cursor: pointer;
    transition: background 0.15s;
}
.dash-lead-row:last-child { border-bottom: none; }
.dash-lead-row:hover { background: #fafafa; }

.dash-lead-row.unread {
    position: relative;
}
.dash-lead-row.unread::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
}

.dash-lead-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.dash-lead-info {
    flex: 1;
    min-width: 0;
}
.dash-lead-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.125rem;
}
.dash-lead-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dash-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-lead-time {
    font-size: 0.75rem;
    color: var(--dash-text-muted);
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.dash-lead-preview {
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-lead-review-btn {
    flex-shrink: 0;
    padding: 0.3125rem 0.75rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.dash-lead-review-btn:hover {
    background: #333;
}
.dash-lead-status-pill {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--dash-text-muted);
    padding: 0.1875rem 0.5rem;
    border: 1px solid var(--dash-border-light);
    border-radius: 999px;
}

/* ---- Recent Conversations (compact) ---- */
.dash-conversations-row {
    display: flex;
    flex-direction: column;
}
.dash-conv-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dash-border-light);
    cursor: pointer;
    transition: background 0.15s;
}
.dash-conv-item:last-child { border-bottom: none; }
.dash-conv-item:hover { background: #fafafa; }
.dash-conv-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
    flex-shrink: 0;
}
.dash-conv-info {
    flex: 1;
    min-width: 0;
}
.dash-conv-name {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--dash-text);
}
.dash-conv-detail {
    font-size: 0.75rem;
    color: var(--dash-text-muted);
    margin-left: 0.375rem;
}
.dash-conv-time {
    font-size: 0.6875rem;
    color: var(--dash-text-muted);
    flex-shrink: 0;
}
.dash-conv-badge {
    font-size: 0.625rem;
    font-weight: 600;
    background: #111;
    color: #fff;
    padding: 0.125rem 0.375rem;
    border-radius: 999px;
    flex-shrink: 0;
}

/* ---- SMS Usage Gauge (inside This Week) ---- */
.dash-sms-gauge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--dash-border-light);
    cursor: pointer;
}
.dash-sms-gauge:hover .dash-sms-gauge-label {
    color: var(--dash-text-secondary);
}
.dash-sms-gauge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-sms-gauge-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dash-sms-gauge-left i,
.dash-sms-gauge-left svg {
    width: 16px;
    height: 16px;
    color: var(--dash-text-secondary);
}
.dash-sms-gauge-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dash-text);
}
.dash-sms-gauge-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dash-text);
}
.dash-sms-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.dash-sms-fill {
    height: 100%;
    border-radius: 3px;
    background: #111;
    transition: width 0.6s ease;
}
.dash-sms-fill.warning { background: #d97706; }
.dash-sms-fill.danger  { background: #dc2626; }
.dash-sms-fill--overage { background: #c2714a; }
.dash-sms-bar--segmented {
    display: flex;
}
.dash-sms-bar--segmented .dash-sms-fill {
    border-radius: 0;
    width: auto;
    transition: flex 0.6s ease;
}
.dash-sms-remaining {
    font-size: 0.75rem;
    color: var(--dash-text-muted);
}
.dash-sms-remaining.low {
    color: #d97706;
    font-weight: 600;
}
.dash-sms-remaining--overage {
    color: #c2714a;
    font-weight: 600;
}

/* ---- Empty State ---- */
.dash-empty {
    text-align: center;
    padding: 1.5rem 0.5rem;
    color: var(--dash-text-muted);
}
.dash-empty i,
.dash-empty svg {
    margin: 0 auto 0.5rem;
    display: block;
    color: #ccc;
}
.dash-empty h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dash-text-secondary);
    margin-bottom: 0.25rem;
}
.dash-empty p {
    font-size: 0.8125rem;
    color: var(--dash-text-muted);
    margin-bottom: 0.75rem;
}

/* ---- Skeleton ---- */
.dash-skeleton-header {
    margin-bottom: 2rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .dash-schedule-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dash-header h1 {
        font-size: 1.25rem;
    }
    .dash-header p {
        font-size: 0.8125rem;
    }
    .dash-metrics-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .dash-metric {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0;
        border-right: none;
    }
    .dash-metric-value {
        font-size: 1.375rem;
    }
    .dash-kpi-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .dash-kpi {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0;
        border-right: none;
    }
    .dash-kpi-value {
        font-size: 1.375rem;
    }
    .dash-section-header h2 {
        font-size: 0.875rem;
    }
    .dash-chart-canvas {
        height: 160px;
    }
    .dash-chart-summary {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 768px) {
    .dash-header h1 {
        font-size: 1.25rem;
    }
    .dash-header p {
        font-size: 0.8125rem;
    }
    .dash-metrics-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .dash-metric {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0;
        border-right: none;
    }
    .dash-metric-value {
        font-size: 1.375rem;
    }
    .dash-section-header h2 {
        font-size: 0.875rem;
    }
    .dash-chart-canvas {
        height: 160px;
    }
    .dash-chart-summary {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    /* No overflow-x on html/body — Safari iOS blocks nested scroll.
       .app-layout and .main-content get clip from dashboard.css @768px. */

    .dash-page {
        padding: 0.75rem;
    }
    .dash-header {
        margin-bottom: 1rem;
    }
    .dash-header h1 {
        font-size: 1.125rem;
    }
    .dash-header p {
        font-size: 0.8125rem;
    }

    /* Sections: tighter spacing */
    .dash-section {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .dash-section-header {
        margin-bottom: 0.625rem;
    }
    .dash-schedule-grid,
    .dash-week-ahead {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    /* Metrics: single-column, each metric inline (value + label on same line) */
    .dash-metrics-row {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .dash-metric {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0 0.5rem;
        padding: 0;
        border-right: none;
    }
    .dash-metric-value {
        font-size: 1.5rem;
    }
    .dash-metric-label {
        font-size: 0.875rem;
        margin-top: 0;
        color: var(--dash-text-muted);
    }
    .dash-metric-trend {
        font-size: 0.75rem;
        margin-top: 0;
    }

    /* SMS gauge */
    .dash-sms-gauge {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    .dash-sms-gauge-label {
        font-size: 0.8125rem;
    }
    .dash-sms-gauge-count {
        font-size: 0.8125rem;
    }

    .dash-today-row {
        grid-template-columns: 50px 1fr;
        gap: 0.375rem;
    }

    /* Week: hide desktop strip, show compact mobile grid */
    .dash-week-strip { display: none !important; }
    .dash-week-mobile {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
        border: 1px solid var(--dash-border, #e5e5e5);
        border-radius: 10px;
        padding: 0.625rem 0.25rem;
    }
    .dash-week-mobile-day {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 0.25rem 0;
    }
    .dash-week-mobile-label {
        font-size: 0.625rem;
        font-weight: 500;
        color: var(--dash-text-muted, #999);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    .dash-week-mobile-num {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--dash-text, #1c1917);
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .dash-week-mobile-day.is-today .dash-week-mobile-num {
        background: #111;
        color: #fff;
    }
    .dash-week-mobile-dot {
        font-size: 0.5625rem;
        font-weight: 600;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: transparent;
    }
    .dash-week-mobile-dot.has-jobs {
        background: #f0fdf4;
        color: #16a34a;
    }
    .dash-week-mobile-dot.at-capacity {
        background: #fff7ed;
        color: #d97706;
    }
    .dash-week-mobile-time {
        font-size: 0.5625rem;
        color: var(--dash-text-muted, #999);
    }

    .dash-attention {
        flex-direction: column;
    }
    .dash-attention-item {
        width: 100%;
    }

    .dash-chart-tabs {
        gap: 0.125rem;
    }
    .dash-chart-tab {
        padding: 0.25rem 0.5rem;
        font-size: 0.6875rem;
    }
    .dash-chart-legend {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .dash-chart-canvas {
        height: 140px;
    }

    .dash-conv-detail {
        display: none;
    }

    .dash-conversations-row {
        flex-direction: column;
    }
}
