/**
 * WMS Mobile PDA — Enterprise Field App UI
 * PDA_UI_DESIGN_SYSTEM.md 토큰·컴포넌트 기준 적용
 */

/* ══════════════════════════════════════
   Design Tokens
   ══════════════════════════════════════ */
:root {
    /* Color — 상태 전달 중심 */
    --color-bg: #f3f6fa;
    --color-surface: #ffffff;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #d8e0ea;
    --color-primary: #1e293b;
    --color-primary-hover: #0f172a;
    --color-info: #2563eb;
    --color-success: #16a34a;
    --color-warn: #f59e0b;
    --color-danger: #dc2626;
    --color-disabled: #94a3b8;

    /* Typography */
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    --text-screen-title: 1.5rem;      /* 24px */
    --text-section-title: 1.125rem;     /* 18px */
    --text-body: 1rem;                  /* 16px */
    --text-caption: 0.875rem;           /* 14px */
    --text-input: 1rem;                 /* 16px — iPhone 확대 방지 */

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 20px;
    --space-xl: 28px;

    /* Shape */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);

    /* Touch targets */
    --touch-btn: 56px;
    --touch-input: 56px;
    --touch-card: 72px;

    /* Layout */
    --content-max: 640px;
    --login-max: 480px;
    --page-padding-x: var(--space-md);
    --bottom-nav-reserve: 0px;
    --bottom-nav-height: 64px;
    --text-kpi: 1.75rem;              /* 28px — 작업 수량 */
}

/* ══════════════════════════════════════
   Base
   ══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: var(--font-system);
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

@supports (padding: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: calc(env(safe-area-inset-bottom) + var(--bottom-nav-reserve));
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
    touch-action: manipulation;
}

button:disabled,
input:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* ══════════════════════════════════════
   Network Lock Banner
   ══════════════════════════════════════ */
.network-lock-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-danger);
    color: #fff;
    font-size: var(--text-caption);
    font-weight: 700;
    text-align: center;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.network-lock-banner.is-hidden {
    display: none;
}

.network-lock-banner.is-reconnecting {
    background: var(--color-warn);
    color: var(--color-text);
}

body.has-bottom-nav {
    --bottom-nav-reserve: var(--bottom-nav-height);
}

body.has-bottom-nav .app-root {
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-md));
}

/* ══════════════════════════════════════
   App Shell
   ══════════════════════════════════════ */
.app-root {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: var(--space-sm) var(--page-padding-x) var(--space-lg);
}

.app-view {
    display: none;
    flex: 1;
    flex-direction: column;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    gap: var(--space-md);
}

.app-view.is-active {
    display: flex;
}

/* ══════════════════════════════════════
   Top Bar — 단계 + 네트워크
   ══════════════════════════════════════ */
.app-top-bar {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.step-item {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-disabled);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}

.step-item.is-active {
    color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.step-item.is-done {
    color: var(--color-success);
}

.step-separator {
    width: 16px;
    height: 2px;
    background: var(--color-border);
    flex-shrink: 0;
}

.network-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 8px var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-text-muted);
}

.network-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-disabled);
    flex-shrink: 0;
}

.network-status.is-online .network-status-dot {
    background: var(--color-success);
}

.network-status.is-offline .network-status-dot {
    background: var(--color-danger);
}

.network-status.is-checking .network-status-dot {
    background: var(--color-warn);
    animation: pulse-dot 1.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ══════════════════════════════════════
   Feedback
   ══════════════════════════════════════ */
.app-feedback {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--text-caption);
    font-weight: 600;
    line-height: 1.45;
}

.app-feedback[hidden] {
    display: none !important;
}

.app-feedback.is-success {
    background: #f0fdf4;
    color: var(--color-success);
    border: 1px solid #bbf7d0;
}

.app-feedback.is-error {
    background: #fef2f2;
    color: var(--color-danger);
    border: 1px solid #fecaca;
}

.app-feedback.is-warn {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.app-feedback.is-info {
    background: #eff6ff;
    color: var(--color-info);
    border: 1px solid #bfdbfe;
}

/* ══════════════════════════════════════
   Shared Components
   ══════════════════════════════════════ */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.view-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.view-title {
    margin: 0;
    font-size: var(--text-screen-title);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.25;
}

.view-user-line {
    margin: 0;
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--color-text);
}

.view-hint {
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    line-height: 1.45;
}

.view-toolbar {
    margin-top: calc(var(--space-xs) * -1);
}

.section-title {
    margin: 0 0 var(--space-sm);
    font-size: var(--text-section-title);
    font-weight: 700;
    color: var(--color-text);
}

.notice-banner {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--text-caption);
    line-height: 1.55;
    border-left: 4px solid transparent;
}

.notice-banner strong {
    color: var(--color-text);
    font-weight: 700;
}

.notice-banner--info {
    background: #f8fafc;
    border-left-color: var(--color-primary);
    color: var(--color-text-muted);
}

.notice-banner--warn {
    background: #fffbeb;
    border-left-color: var(--color-warn);
    color: #92400e;
    font-weight: 600;
}

.empty-state {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

.empty-state-title {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--color-text);
}

.empty-state-desc {
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   Login
   ══════════════════════════════════════ */
.login-hero {
    text-align: center;
    padding: var(--space-sm) 0 var(--space-md);
}

.app-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-sm);
    background: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: var(--radius-md);
}

.login-app-name {
    margin: 0 0 4px;
    font-size: var(--text-screen-title);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.login-app-desc {
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    line-height: 1.45;
}

.login-card {
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-text);
}

.input-lg {
    width: 100%;
    min-height: var(--touch-input);
    padding: 0 var(--space-md);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--text-input);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-lg:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.08);
}

.input-lg::placeholder {
    color: var(--color-disabled);
}

.input-lg:disabled {
    background: #f8fafc;
}

/* ══════════════════════════════════════
   Buttons
   ══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: var(--text-body);
    transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s;
}

.btn:active:not(:disabled) {
    transform: scale(0.985);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-primary-hover);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-primary);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #c5d0dc;
}

.btn-lg {
    width: 100%;
    min-height: var(--touch-btn);
    font-size: var(--text-body);
}

.btn-block {
    width: 100%;
    min-height: var(--touch-btn);
    font-size: var(--text-caption);
}

/* ══════════════════════════════════════
   Warehouse Select
   ══════════════════════════════════════ */
.warehouse-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.warehouse-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    min-height: var(--touch-card);
    padding: var(--space-md);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.warehouse-card:hover:not(:disabled) {
    border-color: #b8c4d4;
}

.warehouse-card:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.warehouse-card.is-selected {
    border-color: var(--color-primary);
    background: #f8fafc;
    box-shadow: 0 0 0 1px var(--color-primary);
}

.warehouse-card:disabled {
    background: #f8fafc;
}

.warehouse-card-body {
    flex: 1;
    min-width: 0;
}

.warehouse-card-name {
    margin: 0 0 2px;
    font-size: var(--text-body);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.3;
}

.warehouse-card-code {
    display: inline-block;
    margin: 0 0 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    background: #eef2f7;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.warehouse-card-desc {
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    line-height: 1.4;
}

.warehouse-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.warehouse-card-badge {
    display: none;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-success);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
}

.warehouse-card.is-selected .warehouse-card-badge {
    display: inline-block;
}

.warehouse-card-arrow {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-disabled);
    line-height: 1;
}

.warehouse-card.is-selected .warehouse-card-arrow {
    color: var(--color-primary);
}

.app-view--home {
    max-width: 960px;
    gap: var(--space-md);
}

/* ══════════════════════════════════════
   Home Launcher
   ══════════════════════════════════════ */
.home-header {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.home-header-label {
    margin: 0;
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-text-muted);
}

.home-header-warehouse {
    margin: 0;
    font-size: var(--text-screen-title);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.2;
}

.home-header-code {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    background: #eef2f7;
    border-radius: 4px;
}

.home-header-meta {
    padding-top: var(--space-xs);
    border-top: 1px solid var(--color-border);
}

.home-header-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.home-header-meta-label {
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-text-muted);
}

.home-header-user {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--color-text);
}

.home-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.home-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.home-section {
    display: flex;
    flex-direction: column;
}

/* 오늘 내 작업 요약 */
.work-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.work-summary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: var(--space-sm) var(--space-xs);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.work-summary-card.is-urgent {
    border-color: #fecaca;
    background: #fef2f2;
}

.work-summary-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    line-height: 1.3;
    margin-bottom: 4px;
}

.work-summary-count {
    font-size: var(--text-kpi);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.work-summary-card.is-urgent .work-summary-count {
    color: var(--color-danger);
}

.work-summary-unit {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* 빠른 실행 */
.quick-action-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quick-action-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--touch-card);
    padding: var(--space-md);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}

.quick-action-card:hover:not(:disabled) {
    border-color: #b8c4d4;
    background: #f8fafc;
}

.quick-action-card:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.quick-action-card:disabled {
    background: #f1f5f9;
    border-color: var(--color-border);
}

.quick-action-label {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--color-text);
}

.quick-action-arrow {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-disabled);
    line-height: 1;
}

/* 스캔 안내 */
.scan-guide-card {
    padding: var(--space-md);
}

.scan-guide-text {
    margin: 0;
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.5;
}

/* 최근 알림 */
.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.notification-item {
    padding: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.notification-item--urgent {
    border-color: #fecaca;
    background: #fffbfb;
}

.notification-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: 6px;
}

.notification-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 999px;
}

.notification-badge--normal {
    color: var(--color-text-muted);
    background: #f1f5f9;
}

.notification-badge--urgent {
    color: var(--color-danger);
    background: #fee2e2;
}

.notification-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-disabled);
}

.notification-title {
    margin: 0 0 4px;
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-text);
}

.notification-message {
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* 하단 고정 네비게이션 */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: stretch;
    min-height: var(--bottom-nav-height);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.06);
}

.bottom-nav.is-hidden {
    display: none;
}

@supports (padding: env(safe-area-inset-bottom)) {
    .bottom-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--bottom-nav-height);
    padding: var(--space-xs);
    background: transparent;
    border: none;
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-text-muted);
    transition: color 0.15s, background 0.15s;
}

.bottom-nav-item.is-active {
    color: var(--color-primary);
    background: #f8fafc;
}

.bottom-nav-item:disabled {
    color: var(--color-disabled);
}

.bottom-nav-item:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

/* ══════════════════════════════════════
   Global Scan
   ══════════════════════════════════════ */
.app-view--scan,
.app-view--placeholder {
    max-width: var(--content-max);
}

.global-scan-panel {
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.global-scan-lead {
    margin: 0;
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.global-scan-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.scan-examples {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.scan-examples-title {
    margin: 0 0 var(--space-xs);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-disabled);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.scan-examples-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scan-examples-list code {
    display: block;
    padding: 6px 8px;
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: var(--color-primary);
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    word-break: break-all;
}

.scan-guide-card--action {
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.scan-guide-card--action:hover {
    border-color: #b8c4d4;
    background: #f8fafc;
}

.scan-guide-cta {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-primary);
}

.pda-scan-capture {
    position: fixed;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.placeholder-work-card {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.placeholder-work-desc {
    margin: var(--space-sm) 0 0;
    font-size: var(--text-body);
    color: var(--color-text-muted);
    line-height: 1.55;
}

.placeholder-work-hint {
    margin: var(--space-md) 0 0;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    background: #f8fafc;
    border-radius: var(--radius-sm);
    line-height: 1.45;
}

/* ══════════════════════════════════════
   Tablet / iPad (768px+)
   ══════════════════════════════════════ */
@media (min-width: 768px) {
    :root {
        --page-padding-x: var(--space-lg);
    }

    .app-root {
        padding-top: var(--space-md);
    }

    .login-card {
        max-width: var(--login-max);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .warehouse-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .home-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        align-items: start;
    }

    .work-summary-grid {
        gap: var(--space-md);
    }

    .work-summary-card {
        min-height: 96px;
    }
}

@media (max-width: 359px) {
    .work-summary-grid {
        grid-template-columns: 1fr;
    }

    .work-summary-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: var(--touch-card);
        padding: var(--space-md);
        text-align: left;
    }

    .work-summary-label {
        margin-bottom: 0;
        flex: 1;
        font-size: var(--text-caption);
    }

    .work-summary-count {
        font-size: 1.5rem;
    }

    .work-summary-unit {
        margin-top: 0;
        margin-left: 2px;
    }
}
