/* Shared layout and component styles for the employee console. */
.app-shell{
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr) 360px;
  gap: 24px;
}.app-shell[hidden],
.mobile-nav[hidden]{
  display: none !important;
}.super-admin-only{
  display: none;
}.is-super-admin .super-admin-only{
  display: block;
}.center-pane,
.workspace{
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}.center-pane{
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--panel-elevated);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}.workspace{
  gap: 24px;
}.center-card,
.workspace-card{
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: var(--panel-elevated);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  backdrop-filter: blur(14px);
}.employee-registry,
.overview-card{
  display: flex;
  flex-direction: column;
  min-height: 0;
}.employee-registry{
  flex: 1 1 0;
}.overview-card{
  flex: 0 0 auto;
  padding: 14px;
}.employee-list-head,
.panel-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}.employee-count-head[hidden]{
  display: none !important;
}.panel-copy{
  min-width: 0;
  display: grid;
  gap: 4px;
}.employee-list-head h3,
.panel-head h3{
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
}.count-badge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  border: 1px solid var(--brand-line);
}.search-filter-bar{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}.search-box{
  position: relative;
}.search-box input{
  padding-left: 44px;
}.search-icon{
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--muted-soft);
  font-size: var(--fs-lg);
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}.filter-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.filter-chip{
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
}.filter-chip:hover{
  background: var(--panel-soft);
  border-color: #cbd5e1;
}.filter-chip.active{
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.18);
}.employee-list{
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}.employee-card{
  position: relative;
  display: grid;
  min-height: 88px;
  padding: 16px 16px 16px 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.09), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 8px 22px rgba(148, 163, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}.employee-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #dbe4f0 0%, #a5b4c7 100%);
}.employee-card:hover{
  border-color: rgba(94, 234, 212, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(148, 163, 184, 0.14);
}.employee-card.selected{
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.15), transparent 42%),
    linear-gradient(180deg, #f7fffd 0%, #eafaf6 100%);
  border-color: rgba(45, 212, 191, 0.72);
  box-shadow:
    0 16px 32px rgba(15, 118, 110, 0.14),
    0 0 0 1px rgba(153, 246, 228, 0.62);
}.employee-card.selected::before{
  background: linear-gradient(180deg, #2dd4bf 0%, var(--brand) 100%);
}.employee-card-top{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}.employee-copy{
  min-width: 0;
  display: grid;
  gap: 4px;
}.status-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 7px;
  background: var(--idle);
  box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.1);
}.status-dot.status-running,
.status-dot.status-success{
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}.status-dot.status-running{
  animation: pulse 2s ease-in-out infinite;
}.status-dot.status-failed,
.status-dot.status-stopped{
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.1);
}.status-dot.status-partial_success,
.status-dot.status-stopping,
.status-dot.status-unknown{
  background: var(--warn);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}.employee-name{
  min-width: 0;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}.employee-role{
  min-width: 0;
  font-size: var(--fs-sm);
  line-height: 1.35;
  color: #475569;
}.employee-role-text{
  display: -webkit-box;
  min-width: 0;
  color: #475569;
  font-weight: 500;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}.stats-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}.stat-chip{
  min-height: 68px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel-soft);
  display: grid;
  align-content: space-between;
  gap: 4px;
}.stat-chip .label{
  font-size: var(--fs-2xs);
  color: var(--muted-soft);
}.stat-chip .value{
  font-size: var(--fs-xl);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-family: var(--font-mono);
}.workspace-head{
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 246, 228, 0.42);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fffd 58%, #eefbf7 100%);
  box-shadow: var(--shadow-soft);
}.workspace-head::after{
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.10);
  filter: blur(8px);
  pointer-events: none;
}.workspace-hero{
  min-width: 0;
  flex: 1 1 auto;
}.hero-identity{
  display: flex;
  align-items: center;
  min-width: 0;
}.hero-avatar{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-right: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #0f172a);
  color: #ffffff;
  font-size: var(--fs-xl);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}.workspace-title{
  min-width: 0;
  display: grid;
  gap: 10px;
}.workspace-title h2{
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}.hero-inline{
  display: flex;
  align-items: center;
  gap: 10px;
  row-gap: 8px;
  flex-wrap: wrap;
}.detail-role-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}.detail-role-label{
  flex: 0 0 auto;
  padding-top: 1px;
  color: var(--muted-soft);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.detail-role{
  min-width: 0;
  flex: 1 1 auto;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: #334155;
}.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  font-size: var(--fs-xs);
  font-weight: 700;
  white-space: nowrap;
}.status-idle{
  color: #64748b;
  background: #f1f5f9;
  border-color: #e2e8f0;
}.status-running,
.status-success{
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}.status-failed,
.status-stopped{
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}.status-partial_success,
.status-stopping,
.status-unknown{
  color: #b45309;
  background: #fffbeb;
  border-color: #fde68a;
}.badge-category{
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(148, 163, 184, 0.28);
}.category-image{
  color: #0f766e;
  background: #ecfeff;
  border-color: #a5f3fc;
}.category-video{
  color: #155e75;
  background: #ecfeff;
  border-color: #a5f3fc;
}.category-data{
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}.header-actions,
.config-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}.config-actions{
  flex: 0 0 auto;
  justify-content: flex-end;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0), rgba(255, 255, 255, 0.94) 22%),
    rgba(255, 255, 255, 0.86);
}.config-actions button,
.header-actions button,
.prompt-library-row button,
.date-nav-button,
.date-range-clear{
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: var(--fs-md);
  font-weight: 700;
  box-shadow: none;
}.config-actions button{
  min-width: 150px;
}.config-actions button:first-child{
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(15, 118, 110, 0.16);
}.config-actions button:first-child:hover{
  background: var(--brand-strong);
}.config-actions button:last-child{
  color: #475569;
  background: #f8fafc;
}.config-actions button:hover,
.header-actions button:hover,
.prompt-library-row button:hover,
.date-nav-button:hover,
.date-range-clear:hover{
  background: var(--panel-soft);
}.config-actions .primary,
.header-actions .primary{
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}.config-actions .primary:hover,
.header-actions .primary:hover{
  background: var(--brand-strong);
}.header-actions .secondary{
  background: #f8fafc;
  border-color: #dbe3ee;
  color: #334155;
}.header-actions .danger{
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}.head-action-panel{
  justify-content: flex-end;
  align-items: center;
}.workspace-body{
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 4px;
}.tab-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
}.tab-button{
  min-height: auto;
  padding: 0 2px 12px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: var(--fs-md);
  font-weight: 700;
}.tab-button.active{
  color: var(--brand);
  border-bottom-color: var(--brand);
}.tab-panel-wrap{
  min-height: 0;
  flex: 0 0 auto;
  position: static;
}.tab-panel{
  position: static;
  inset: auto;
  display: none;
  overflow: visible;
}.tab-panel.active{
  display: block;
}.overview-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-height: 100%;
}.summary-grid{
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding-top: 18px;
  align-items: start;
}.summary-section{
  min-height: 0;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #e6edf5;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}.summary-hero-card{
  display: grid;
  gap: 16px;
  border-color: rgba(153, 246, 228, 0.72);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.10);
}.summary-status-line,
.summary-hero-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: var(--fs-xs);
}.summary-focus{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}.summary-focus-label{
  margin-bottom: 6px;
  color: var(--muted-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.summary-focus h3{
  font-size: var(--fs-xl);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}.summary-progress-number{
  flex: 0 0 auto;
  color: var(--brand);
  font-size: var(--fs-2xl);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  font-family: var(--font-mono);
}.progress-rail,
.task-progress{
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}.progress-rail span,
.task-progress span{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #2dd4bf);
}.summary-alert{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #be123c;
  font-size: var(--fs-xs);
  line-height: 1.5;
  word-break: break-word;
}.summary-section-title{
  margin-bottom: 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}.summary-metric-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}.summary-context-list{
  display: grid;
  gap: 12px;
}.summary-context-row{
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}.summary-context-row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}.summary-item .label{
  font-size: var(--fs-xs);
  color: var(--muted-soft);
}.metric-card{
  min-height: 94px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.06), transparent 40%),
    #ffffff;
}.summary-item .value{
  margin-top: 7px;
  font-size: var(--fs-xl);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  overflow-wrap: anywhere;
}.summary-item .value.value-metric{
  font-size: var(--fs-xl);
  font-family: var(--font-mono);
}.summary-item .value.value-time,
.summary-item .value.value-compact{
  font-size: var(--fs-md);
  font-family: var(--font-mono);
}.summary-item.tone-success .value{
  color: var(--success);
}.summary-item.tone-danger .value{
  color: var(--danger);
}.summary-item.tone-brand .value{
  color: var(--brand);
}.skeleton-block{
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}.summary-skeleton,
.list-skeleton{
  display: grid;
  gap: 12px;
}.summary-skeleton{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.summary-skeleton .skeleton-block{
  min-height: 90px;
}.list-skeleton .skeleton-block{
  min-height: 74px;
}.config-shell,
.stretch{
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}.tab-panel[data-tab-panel="config"]{
  overflow: hidden;
}.config-shell{
  height: 100%;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.10), transparent 34%);
}.config-form-scroll{
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding: 18px 18px 4px;
}.config-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}.field{
  display: grid;
  gap: 6px;
  min-width: 0;
}.field-span-2{
  grid-column: 1 / -1;
}.field label,
.prompt-library-section label{
  font-size: var(--fs-sm);
  font-weight: 700;
}.field-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}.field-head label{
  min-width: 0;
  color: #1e293b;
}.field-required{
  flex: 0 0 auto;
  min-height: 20px;
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  background: rgba(236, 253, 245, 0.88);
  color: var(--brand-ink);
  font-size: var(--fs-2xs);
  font-weight: 700;
}.config-section{
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(216, 225, 234, 0.88);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.065), transparent 32%),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}.config-section-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}.config-section-head h3{
  margin-top: 4px;
  font-size: var(--fs-lg);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}.config-section-head p{
  max-width: 380px;
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.55;
  text-align: right;
}.config-section-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}.config-managed-shell{
  gap: 18px;
}.config-platform-shell{
  gap: 16px;
}.config-managed-head{
  align-items: flex-start;
}.config-managed-overview{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}.config-managed-kpi{
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}.config-managed-kpi span{
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.45;
}.config-managed-kpi strong,
.config-managed-block-head strong,
.config-managed-card-head strong{
  color: var(--text-strong);
  font-size: var(--fs-md);
  line-height: 1.25;
  font-weight: var(--weight-heavy);
}.config-managed-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}.config-managed-block{
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.62);
}.config-managed-block-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}.config-managed-card-list,
.config-managed-readiness{
  display: grid;
  gap: 12px;
}.config-managed-card{
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}.config-managed-card.is-cloud{
  border-color: rgba(45, 212, 191, 0.32);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(255, 255, 255, 0.98));
}.config-managed-card.is-local{
  border-color: rgba(250, 204, 21, 0.28);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.96), rgba(255, 255, 255, 0.98));
}.config-managed-card-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}.config-managed-card-head p,
.config-managed-note,
.config-managed-meta,
.config-managed-value{
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.6;
}.config-managed-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}.config-managed-meta span{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted-soft);
  border: 1px solid var(--line-soft);
  font-weight: var(--weight-semibold);
}.config-managed-value{
  color: var(--text);
  font-size: var(--type-body-sm);
  overflow-wrap: anywhere;
}.config-managed-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.config-managed-empty{
  display: grid;
  gap: 12px;
}.config-asset-log{
  display: grid;
  gap: 10px;
}.config-asset-log-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}.config-asset-log-main,
.config-asset-log-side{
  min-width: 0;
  display: grid;
  gap: 4px;
}.config-asset-log-main strong{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-strong);
  font-size: var(--type-body-sm);
}.config-asset-log-main span,
.config-asset-log-side span,
.config-asset-log-side time{
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.5;
}.config-asset-log-side{
  text-align: right;
}.config-field-card{
  align-content: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.74);
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}.config-field-card:focus-within{
  border-color: rgba(45, 212, 191, 0.72);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.08);
}.config-field-card .hint{
  padding-top: 2px;
}.path-input-row{
  display: block;
}.path-action-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}.path-action-button{
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}.path-action-button:hover{
  border-color: rgba(20, 184, 166, 0.42);
  background: rgba(240, 253, 250, 0.92);
  color: #0f766e;
}.path-action-button-cloud{
  border-color: rgba(13, 148, 136, 0.24);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(204, 251, 241, 0.92));
  color: #0f766e;
}.path-link{
  border: 1px solid rgba(20, 184, 166, 0.28);
  background: rgba(240, 253, 250, 0.92);
  color: #0f766e;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease;
}.path-input-row input[readonly]{
  cursor: pointer;
  border-color: rgba(20, 184, 166, 0.34);
  background:
    linear-gradient(90deg, rgba(240, 253, 250, 0.78), #ffffff 38%),
    #ffffff;
}.path-input-row input[readonly]:hover{
  border-color: rgba(13, 148, 136, 0.62);
  background: rgba(240, 253, 250, 0.92);
}.path-selected-name{
  margin-top: 8px;
  color: #0f766e;
  font-size: var(--fs-xs);
  font-weight: 700;
  overflow-wrap: anywhere;
}.path-link{
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  text-align: left;
  overflow-wrap: anywhere;
}.path-link:hover{
  border-color: rgba(13, 148, 136, 0.55);
  background: rgba(204, 251, 241, 0.7);
}.path-empty{
  color: var(--muted-soft);
}.prompt-library-box{
  padding: 18px;
  border: 1px solid rgba(153, 246, 228, 0.78);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f1fbf8 100%);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.09);
}.prompt-workspace{
  gap: 16px;
}.prompt-workspace-head{
  border-bottom-color: rgba(153, 246, 228, 0.66);
}.prompt-workspace-editor,
.prompt-library-section{
  display: grid;
  gap: 8px;
}.prompt-workspace-editor textarea{
  min-height: 132px;
  border-color: rgba(153, 246, 228, 0.8);
  background: rgba(255, 255, 255, 0.82);
}.prompt-library-section{
  padding: 14px;
  border: 1px solid rgba(216, 225, 234, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}.prompt-library-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}.prompt-library-row button{
  white-space: nowrap;
}.date-range-field{
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.74);
}.date-range-summary{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}.date-trigger{
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: grid;
  justify-items: start;
  gap: 6px;
  text-align: left;
}.date-trigger:hover{
  background: var(--panel-soft);
}.date-trigger.active{
  border-color: #5eead4;
  box-shadow: var(--shadow-focus);
}.date-trigger-label{
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 700;
}.date-trigger-value{
  font-size: var(--fs-lg);
  color: var(--text);
  font-weight: 700;
}.date-trigger-value.placeholder{
  color: var(--muted-soft);
  font-weight: 600;
}.date-range-panel{
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}.date-range-toolbar,
.date-range-footnote{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}.date-range-nav{
  display: flex;
  align-items: center;
  gap: 8px;
}.date-months{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}.date-month{
  display: grid;
  gap: 12px;
}.date-month-title{
  text-align: center;
  font-size: var(--fs-md);
  font-weight: 700;
}.date-weekdays,
.date-days{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}.date-weekdays span{
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted-soft);
  font-weight: 700;
  padding-bottom: 4px;
}.date-day{
  min-height: 38px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: #f8fafc;
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 700;
}.date-day:hover{
  border-color: var(--brand-line);
  background: var(--brand-soft);
}.date-day.muted{
  color: var(--muted-soft);
  background: #f8fafc;
}.date-day.in-range{
  color: var(--brand);
  background: var(--brand-soft);
}.date-day.selected{
  color: #ffffff;
  background: var(--brand);
}.task-search-box{
  position: relative;
}.task-search-box input{
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
}.task-search-box input::placeholder{
  color: var(--muted-soft);
}.task-search-box input:hover{
  border-color: var(--line-strong);
}.task-search-box input:focus{
  border-color: var(--brand);
  box-shadow: var(--shadow-focus);
}.task-filter-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.task-item{
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(216, 225, 234, 0.92);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.055), transparent 34%),
    #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
}.task-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}.task-row h4{
  font-size: var(--fs-md);
  font-weight: 700;
  overflow-wrap: anywhere;
}.task-title-block{
  min-width: 0;
  display: grid;
  gap: 4px;
}.task-kicker{
  color: var(--muted-soft);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.10em;
}.task-context-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.task-context-row span{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--surface-raised);
  color: var(--muted);
  font-size: var(--type-meta);
  font-weight: var(--weight-semibold);
}.task-progress{
  height: 8px;
}.task-meta-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}.task-meta-grid div{
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.88);
}.task-meta-grid span,
.snapshot-label{
  color: var(--muted-soft);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}.task-meta-grid strong{
  min-width: 0;
  color: #334155;
  font-size: var(--fs-xs);
  font-weight: 700;
  overflow-wrap: anywhere;
}.empty{
  position: relative;
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px 20px 18px 48px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(15, 118, 110, 0.24);
  background:
    linear-gradient(135deg, rgba(242, 255, 252, 0.94), rgba(248, 250, 252, 0.96));
  color: var(--muted);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  line-height: var(--leading-body);
  text-align: center;
}.empty::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(15, 118, 110, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.92) 0 3px, transparent 4px),
    rgba(232, 248, 245, 0.95);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.08);
  transform: translateY(-50%);
}.empty:only-child{
  width: 100%;
}.mini-console,
.mono,
.json-box{
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #1e293b;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: auto;
}#runtimeLog{
  padding: 10px 12px;
  line-height: 1;
}.snapshot-shell{
  display: grid;
  gap: 14px;
}.snapshot-summary{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  white-space: normal;
  font-family: var(--font-sans);
  align-items: stretch;
}.snapshot-summary > div{
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  min-height: 72px;
}.snapshot-summary strong{
  min-width: 0;
  color: #1e293b;
  font-size: var(--fs-xs);
  line-height: 1.45;
  overflow-wrap: anywhere;
}.snapshot-path-index{
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  background: rgba(240, 253, 250, 0.68);
  font-family: var(--font-sans);
}.snapshot-path-list{
  display: grid;
  gap: 8px;
}.snapshot-path-row{
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}.snapshot-path-row > span{
  min-width: 0;
  color: var(--muted-soft);
  font-size: var(--fs-2xs);
  font-weight: 700;
  overflow-wrap: anywhere;
}.snapshot-artifacts,
.snapshot-assets{
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(248, 250, 252, 0.86);
  font-family: var(--font-sans);
}.snapshot-artifacts-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}.snapshot-artifact-count{
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 700;
}.artifact-list{
  display: grid;
  gap: 10px;
}.artifact-item{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: #ffffff;
}.artifact-item.has-preview{
  grid-template-columns: 84px minmax(0, 1fr) auto;
}.artifact-item.has-preview:has(.artifact-preview-video){
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto;
}.artifact-preview{
  width: 84px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 8px;
  background: #f8fafc;
}.artifact-preview-image{
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
}.artifact-preview-image:hover,
.artifact-preview-image:focus-visible{
  border-color: rgba(13, 148, 136, 0.54);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
  outline: none;
}.artifact-preview img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}.artifact-preview video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0f172a;
}.artifact-preview-video{
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  place-self: start;
  position: relative;
}.artifact-preview-video video,
.artifact-preview-video .artifact-preview-loading{
  grid-area: 1 / 1;
}.artifact-preview-video .artifact-preview-loading{
  align-self: center;
  justify-self: center;
  padding: 0 12px;
  background: rgba(248, 250, 252, 0.92);
  border-radius: 999px;
}.artifact-preview img[hidden]{
  display: none;
}.artifact-preview-loading,
.artifact-preview-file span{
  color: #64748b;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0;
}.artifact-preview-image[data-auth-image-state="loaded"] .artifact-preview-loading{
  display: none;
}.artifact-preview-image[data-auth-image-state="failed"]{
  border-color: rgba(248, 113, 113, 0.5);
  background: #fef2f2;
}.artifact-preview-video[data-auth-video-state="loaded"] .artifact-preview-loading{
  display: none;
}.artifact-preview-video[data-auth-video-state="failed"]{
  border-color: rgba(248, 113, 113, 0.5);
  background: #fef2f2;
}.artifact-item.is-uploaded{
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(245, 255, 252, 0.96);
}.artifact-item.has-error{
  border-color: rgba(248, 113, 113, 0.28);
  background: rgba(254, 242, 242, 0.96);
}.artifact-main{
  display: grid;
  gap: 6px;
  min-width: 0;
}.artifact-title-row{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}.artifact-title-row strong{
  min-width: 0;
  color: #1e293b;
  font-size: var(--fs-sm);
  line-height: 1.35;
  overflow-wrap: anywhere;
}.artifact-role{
  flex: 0 0 auto;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 700;
}.artifact-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 700;
}.artifact-key{
  color: #0f766e;
  font-size: var(--fs-2xs);
  line-height: 1.5;
  overflow-wrap: anywhere;
}.artifact-error{
  color: #b91c1c;
  font-size: var(--fs-2xs);
  line-height: 1.5;
  overflow-wrap: anywhere;
}.artifact-actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}.artifact-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: rgba(240, 253, 250, 0.92);
  color: #0f766e;
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}.artifact-link:hover{
  border-color: rgba(13, 148, 136, 0.48);
  background: rgba(204, 251, 241, 0.96);
  color: #115e59;
}.artifact-link-secondary{
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: #475569;
}.artifact-link-secondary:hover{
  border-color: rgba(100, 116, 139, 0.34);
  background: rgba(248, 250, 252, 0.98);
  color: #334155;
}

@media (max-width: 900px) {.artifact-item,
.artifact-item.has-preview{
    grid-template-columns: minmax(0, 1fr);
  }.artifact-preview{
    width: 100%;
    max-width: 220px;
    aspect-ratio: 4 / 3;
  }.artifact-actions{
    justify-content: flex-start;
  }
}.snapshot-shell pre{
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  color: #d7fbe8;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: auto;
}.log-line{
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
  padding: 1px 0;
  border-bottom: 0;
  line-height: 1;
}.log-line:last-child{
  border-bottom: 0;
}.log-line-number{
  color: #cbd5e1;
  line-height: inherit;
  user-select: none;
}.log-line-text{
  min-width: 0;
  color: #334155;
  line-height: inherit;
}.log-line-error .log-line-text{
  color: #be123c;
  font-weight: 700;
}.log-line-warn .log-line-text{
  color: #b45309;
  font-weight: 700;
}.log-line-success .log-line-text{
  color: #047857;
  font-weight: 700;
}.log-line-event .log-line-text{
  color: var(--brand-ink);
}.toast-stack{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}.toast{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #dbe7f5;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}.toast-icon{
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: var(--fs-md);
  font-weight: 700;
  background: var(--brand-soft);
  color: var(--brand);
}.toast-body{
  min-width: 0;
  display: grid;
  gap: 2px;
}.toast-title{
  font-size: var(--fs-sm);
  font-weight: 700;
}.toast-message{
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--muted);
  word-break: break-word;
}.toast-success{
  border-color: #a7f3d0;
  background: rgba(236, 253, 245, 0.98);
}.toast-error{
  border-color: #fecaca;
  background: rgba(254, 242, 242, 0.98);
}.toast-warning{
  border-color: #fde68a;
  background: rgba(255, 251, 235, 0.98);
}.mobile-nav{
  display: none;
}/* Premium system-console refresh: preserves behavior,
tightens the existing UI. */
.app-shell{
  grid-template-columns: 304px minmax(0, 1fr) 332px;
  gap: 16px;
}.center-pane{
  gap: 12px;
  padding: 12px;
  border-color: rgba(210, 210, 215, 0.88);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.25);
}.workspace{
  gap: 16px;
}.center-card,
.workspace-card{
  padding: 16px;
  border-color: rgba(210, 210, 215, 0.82);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.15);
}.employee-list-head,
.panel-head{
  margin-bottom: 10px;
}.employee-list-head h3,
.panel-head h3{
  font-size: var(--fs-md);
  font-weight: 600;
}.count-badge{
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.08);
  color: var(--brand-ink);
  font-size: var(--fs-2xs);
  font-weight: 700;
}.search-filter-bar{
  gap: 9px;
  margin-bottom: 12px;
}.search-box input{
  padding-left: 38px;
  background: rgba(245, 245, 247, 0.82);
  border-color: transparent;
}.search-box input:focus{
  background: #ffffff;
  border-color: var(--brand);
}.search-icon{
  left: 13px;
  color: var(--muted);
  font-size: var(--fs-lg);
}.filter-chips{
  gap: 6px;
}.filter-chip{
  min-height: 29px;
  padding: 0 10px;
  border-color: rgba(210, 210, 215, 0.82);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
}.filter-chip:hover{
  background: #f5f5f7;
}.filter-chip.active{
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #ffffff;
  box-shadow: none;
}.employee-list{
  gap: 8px;
}.employee-card{
  min-height: 74px;
  padding: 13px 13px 13px 16px;
  border-radius: var(--radius-md);
  border-color: rgba(210, 210, 215, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}.employee-card::before{
  width: 3px;
  border-radius: 0;
  background: rgba(134, 134, 139, 0.42);
}.employee-card:hover{
  border-color: rgba(0, 113, 227, 0.34);
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}.employee-card.selected{
  border-color: rgba(0, 113, 227, 0.44);
  background: #f5faff;
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.10);
}.employee-card.selected::before{
  background: var(--brand);
}.employee-card-top{
  gap: 10px;
}.status-dot{
  width: 8px;
  height: 8px;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(142, 142, 147, 0.12);
}.employee-name{
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.015em;
}.employee-role,
.employee-role-text{
  color: var(--muted);
  font-size: var(--fs-xs);
}.stats-grid{
  gap: 8px;
}.stat-chip{
  min-height: 62px;
  border-color: rgba(210, 210, 215, 0.72);
  background: rgba(245, 245, 247, 0.7);
}.stat-chip .label{
  color: var(--muted);
  font-size: var(--fs-2xs);
}.stat-chip .value{
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-family: var(--font-mono);
}.workspace-head{
  padding: 16px 18px;
  border-color: rgba(210, 210, 215, 0.82);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}.workspace-head::after{
  display: none;
}.hero-avatar{
  width: 52px;
  height: 52px;
  margin-right: 14px;
  border-radius: var(--radius-md);
  background: #1d1d1f;
  font-size: var(--fs-xl);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}.workspace-title{
  gap: 8px;
}.workspace-title h2{
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: -0.035em;
}.detail-role-label{
  color: var(--muted);
}.detail-role{
  color: #3a3a3c;
}.badge{
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-weight: 600;
}.badge-category{
  background: rgba(245, 245, 247, 0.9);
  border-color: rgba(210, 210, 215, 0.76);
}.category-image,
.category-video,
.category-data,
.status-running,
.status-success,
.status-idle,
.status-failed,
.status-stopped,
.status-partial_success,
.status-stopping,
.status-unknown{
  border-color: rgba(210, 210, 215, 0.72);
}.config-actions button,
.header-actions button,
.prompt-library-row button,
.date-nav-button,
.date-range-clear{
  min-height: 38px;
  padding: 0 14px;
  border-color: rgba(210, 210, 215, 0.86);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}.config-actions .primary,
.header-actions .primary,
.config-actions button:first-child{
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #ffffff;
  box-shadow: none;
}.config-actions .primary:hover,
.header-actions .primary:hover,
.config-actions button:first-child:hover{
  background: #000000;
}.header-actions .secondary{
  background: #f5f5f7;
  border-color: rgba(210, 210, 215, 0.86);
  color: #1d1d1f;
}.header-actions .danger{
  background: #fff2f2;
  border-color: rgba(255, 59, 48, 0.22);
  color: #d70015;
}.tab-bar{
  gap: 26px;
  border-bottom-color: rgba(210, 210, 215, 0.9);
}.tab-button{
  padding-bottom: 11px;
  color: var(--muted);
  font-weight: 600;
}.tab-button.active{
  color: #1d1d1f;
  border-bottom-color: #1d1d1f;
}.summary-section,
.metric-card,
.config-section,
.config-field-card,
.date-range-field,
.date-trigger,
.date-range-panel,
.snapshot-summary > div,
.snapshot-path-index,
.empty,
.mini-console,
.mono,
.json-box{
  border-radius: var(--radius-md);
}.summary-hero-card,
.metric-card,
.config-shell,
.config-section,
.config-field-card,
.prompt-library-box,
.prompt-library-section{
  background: #ffffff;
  box-shadow: none;
}.summary-hero-card{
  border-color: rgba(0, 113, 227, 0.22);
}.summary-progress-number{
  color: var(--brand);
  font-weight: 700;
}.progress-rail span,
.task-progress span{
  background: var(--brand);
}.config-shell{
  border-color: rgba(210, 210, 215, 0.82);
}.config-form-scroll{
  padding: 16px 16px 4px;
}.config-grid,
.config-section-grid{
  gap: 12px;
}.config-section{
  gap: 12px;
  padding: 14px;
  border-color: rgba(210, 210, 215, 0.78);
}.config-section-head h3{
  font-size: var(--fs-lg);
  font-weight: 600;
}.config-field-card{
  padding: 11px;
  border-color: rgba(210, 210, 215, 0.72);
  background: rgba(245, 245, 247, 0.55);
}.config-field-card:focus-within{
  border-color: rgba(0, 113, 227, 0.42);
  background: #ffffff;
  box-shadow: var(--shadow-focus);
}.field label,
.prompt-library-section label{
  font-weight: 600;
}.path-input-row input[readonly],
.path-input-row input[readonly]:hover{
  border-color: rgba(210, 210, 215, 0.86);
  background: #ffffff;
}.path-link,
.path-selected-name{
  color: var(--brand);
}.task-meta-grid div{
  border-radius: var(--radius-sm);
  background: #f5f5f7;
}.mini-console,
.mono,
.json-box{
  border-color: rgba(210, 210, 215, 0.76);
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: var(--font-mono);
}.toast{
  border-radius: var(--radius-md);
  border-color: rgba(210, 210, 215, 0.88);
  box-shadow: var(--shadow);
}/* V2 polish: richer product feel without changing the panel's capabilities. */
.app-shell{
  grid-template-columns: 316px minmax(0, 1fr) 348px;
  gap: 18px;
}.center-pane{
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.78));
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 70px rgba(29, 29, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}.center-card,
.workspace-card{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 253, 0.92));
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 10px 28px rgba(29, 29, 31, 0.065),
    inset 0 0 0 1px rgba(210, 210, 215, 0.54);
}.employee-registry{
  padding: 16px 14px 14px;
}.count-badge{
  background: rgba(10, 132, 255, 0.10);
  border-color: rgba(10, 132, 255, 0.20);
  color: #005bbd;
}.search-box input{
  min-height: 42px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.42);
}.filter-chip{
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}.filter-chip.active{
  background: #1d1d1f;
  box-shadow: 0 8px 20px rgba(29, 29, 31, 0.18);
}.employee-card{
  min-height: 78px;
  padding: 14px 14px 14px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 252, 0.76));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(210, 210, 215, 0.56),
    0 5px 14px rgba(29, 29, 31, 0.035);
}.employee-card::before{
  width: 4px;
  background: linear-gradient(180deg, rgba(142, 142, 147, 0.34), rgba(142, 142, 147, 0.12));
}.employee-card:hover{
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(10, 132, 255, 0.22),
    0 12px 30px rgba(29, 29, 31, 0.08);
}.employee-card.selected{
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(10, 132, 255, 0.32),
    0 14px 34px rgba(10, 132, 255, 0.12);
}.employee-card.selected::before{
  background: linear-gradient(180deg, var(--brand), #30d158);
}.employee-name{
  font-weight: 700;
}.employee-role-text{
  color: #56565b;
}.overview-card{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 249, 0.84));
}.stat-chip{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 250, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}.workspace-head{
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92) 58%, rgba(241, 251, 247, 0.88));
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 48px rgba(29, 29, 31, 0.09),
    inset 0 0 0 1px rgba(210, 210, 215, 0.55);
}.hero-avatar{
  background:
    linear-gradient(135deg, #111113 0%, #2c2c2e 48%, var(--brand) 160%);
  box-shadow:
    0 16px 32px rgba(29, 29, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}.workspace-title h2{
  font-size: var(--fs-2xl);
}.badge{
  background: rgba(255, 255, 255, 0.70);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}.status-idle{
  background: rgba(245, 245, 247, 0.92);
}.status-running,
.status-success{
  background: rgba(52, 199, 89, 0.10);
  border-color: rgba(52, 199, 89, 0.22);
}.head-action-panel{
  padding: 5px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.5);
}.config-actions button,
.header-actions button,
.prompt-library-row button,
.date-nav-button,
.date-range-clear{
  min-height: 39px;
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.90));
  box-shadow:
    inset 0 0 0 1px rgba(210, 210, 215, 0.54),
    0 4px 10px rgba(29, 29, 31, 0.04);
}.config-actions .primary,
.header-actions .primary,
.config-actions button:first-child{
  background: linear-gradient(180deg, #2c2c2e, #111113);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(29, 29, 31, 0.18);
}.header-actions .secondary{
  background: rgba(255, 255, 255, 0.86);
}.header-actions .danger{
  background: linear-gradient(180deg, #fff7f7, #fff0ef);
}.workspace-body{
  padding: 0 2px 2px;
}.tab-bar{
  padding: 0 6px;
}.tab-button{
  position: relative;
  font-size: var(--fs-sm);
}.tab-button.active{
  color: #111113;
}.tab-button.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #30d158);
}.overview-summary-card{
  padding: 18px;
}.summary-section,
.metric-card,
.config-shell,
.config-section,
.config-field-card{
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(210, 210, 215, 0.52),
    0 8px 22px rgba(29, 29, 31, 0.045);
}.summary-hero-card{
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92));
}.summary-progress-number{
  background: linear-gradient(135deg, var(--brand), #1d1d1f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}.progress-rail,
.task-progress{
  height: 8px;
  background: rgba(210, 210, 215, 0.75);
}.progress-rail span,
.task-progress span{
  background: linear-gradient(90deg, var(--brand), #30d158);
}.config-shell{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88));
}.config-section{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.82));
}.config-field-card{
  background: rgba(255, 255, 255, 0.72);
}.config-field-card:focus-within{
  box-shadow:
    var(--shadow-focus),
    0 10px 22px rgba(10, 132, 255, 0.08);
}.mini-console,
.mono,
.json-box{
  background: rgba(246, 247, 249, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}/* Reference style pass: compact operations console with left resource rail and dark terminal. */
.app-shell{
  grid-template-columns: 364px minmax(0, 1fr) 456px;
  gap: 12px;
}.center-pane{
  gap: 20px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
  backdrop-filter: none;
}.employee-registry,
.overview-card{
  margin: 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}.employee-registry::before{
  content: "";
  display: block;
  margin: 2px 0 16px;
  color: #132033;
  font-size: var(--fs-md);
  font-weight: 700;
}.employee-list-head{
  padding: 16px 16px 0;
  margin-bottom: 14px;
}.employee-list-head h3,
.panel-head h3{
  color: #132033;
  font-size: var(--fs-md);
  font-weight: 700;
}.count-badge{
  min-height: 22px;
  border: 0;
  background: transparent;
  color: var(--muted-soft);
  font-size: var(--fs-xs);
}.search-filter-bar{
  padding: 0 16px 14px;
  margin-bottom: 0;
}.search-box input{
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}.filter-chips{
  gap: 9px;
}.filter-chip{
  min-height: 32px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
  color: #516178;
  font-weight: 700;
}.filter-chip.active{
  background: #10a37f;
  border-color: #10a37f;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 163, 127, 0.22);
}.employee-list{
  gap: 10px;
  padding: 0 10px 0 10px;
}.employee-card{
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: none;
}.employee-card::before{
  display: none;
}.employee-card:hover{
  border-color: rgba(16, 163, 127, 0.42);
  background: #fbfffd;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}.employee-card.selected{
  border-color: rgba(16, 163, 127, 0.48);
  background: #f4fffb;
  box-shadow: inset 0 0 0 1px rgba(16, 163, 127, 0.18);
}.employee-card-top{
  align-items: center;
  gap: 14px;
}.status-dot{
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #0b5f59);
  box-shadow: none;
}.status-dot::after{
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--idle);
}.status-dot.status-running::after,
.status-dot.status-success::after{
  background: var(--success);
}.status-dot.status-failed::after,
.status-dot.status-stopped::after{
  background: var(--danger);
}.status-dot.status-partial_success::after,
.status-dot.status-stopping::after,
.status-dot.status-unknown::after{
  background: var(--warn);
}.employee-avatar-number{
  color: #ffffff;
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1;
}.employee-name{
  font-size: var(--fs-lg);
  font-weight: 700;
}.employee-role,
.employee-role-text{
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
}.overview-card{
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #ffffff;
}.overview-card .employee-list-head{
  padding: 0;
  margin-bottom: 14px;
}.stats-grid{
  gap: 10px;
}.stat-chip{
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fbfcfe;
  box-shadow: none;
}.stat-chip .label{
  color: var(--muted-soft);
  font-weight: 600;
}.stat-chip .value{
  color: #132033;
  font-size: var(--fs-2xl);
  font-weight: 700;
}.workspace{
  gap: 12px;
}.workspace-head{
  min-height: 136px;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}.hero-avatar{
  width: 64px;
  height: 64px;
  margin-right: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, #74e4c1 0%, #36c5f0 46%, var(--brand-strong) 100%);
  color: #ffffff;
  font-size: var(--fs-2xl);
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}.workspace-title{
  gap: 8px;
}.workspace-title h2{
  color: #132033;
  font-size: var(--fs-2xl);
  font-weight: 700;
}.detail-role-row{
  margin-top: 3px;
}.detail-role-label{
  display: none;
}.detail-role{
  color: var(--muted);
  font-size: var(--fs-sm);
}.badge{
  min-height: 28px;
  padding: 0 12px;
  border-radius: 7px;
  box-shadow: none;
  font-weight: 700;
}.status-running,
.status-success{
  color: #047857;
  background: #dff8ec;
  border-color: #c4f1dd;
}.status-idle{
  color: #64748b;
  background: #f4f7fb;
  border-color: #e4eaf2;
}.badge-category,
.category-image,
.category-video,
.category-data{
  color: var(--brand);
  background: #eef4ff;
  border-color: #dbe7ff;
}.head-action-panel{
  padding: 0;
  gap: 12px;
  background: transparent;
  box-shadow: none;
}.header-actions button,
.config-actions button{
  min-height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
  font-size: var(--fs-md);
  font-weight: 700;
}.header-actions .primary,
.config-actions button:first-child{
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}.header-actions .primary{
  color: #10a37f;
  background: #ffffff;
  border-color: rgba(16, 163, 127, 0.34);
  box-shadow: none;
}.header-actions .secondary{
  color: #334155;
  background: #ffffff;
}.header-actions .danger{
  color: #ff4d4f;
  background: #ffffff;
  border-color: #ffd7d7;
}.workspace-body{
  gap: 22px;
  padding: 0;
}.tab-bar{
  gap: 40px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}.tab-button{
  padding: 0 0 16px;
  color: #334155;
  font-size: var(--fs-md);
  font-weight: 700;
}.tab-button.active{
  color: var(--brand);
  border-bottom-color: transparent;
}.tab-button.active::after{
  bottom: -1px;
  height: 3px;
  background: var(--brand);
}.tab-panel-wrap{
  min-height: 0;
}.workspace-card{
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}.overview-summary-card{
  padding: 26px;
}.panel-head{
  margin-bottom: 18px;
}.config-grid,
.config-section-grid{
  gap: 18px;
}.config-section,
.config-section,
.config-field-card,
.metric-card,
.mini-console,
.mono,
.json-box{
  border-radius: 8px;
  border-color: var(--line-soft);
  background: #ffffff;
  box-shadow: none;
}.config-shell{
  border-radius: 10px;
  background: #ffffff;
}.config-form-scroll{
  padding: 26px;
}.config-section{
  padding: 22px 24px;
}.config-section-head{
  padding-bottom: 16px;
}.config-section-head h3{
  color: #132033;
  font-size: var(--fs-xl);
  font-weight: 700;
}.config-field-card{
  padding: 18px 20px;
  background: #ffffff;
}.field label,
.prompt-library-section label{
  color: #132033;
  font-size: var(--fs-md);
  font-weight: 700;
}input,
select,
textarea{
  border-radius: 7px;
}.config-actions{
  padding: 18px 24px 22px;
  background: #ffffff;
}/* Running overview refinement: calmer rhythm,
better proportions,
less visual noise. */
.tab-bar{
  min-height: 52px;
  align-items: flex-end;
  gap: 0;
  padding: 0 20px;
}.tab-button{
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 0 18px 14px;
  color: #516178;
  font-size: var(--fs-md);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}.tab-button:hover{
  color: #132033;
  background: transparent;
}.tab-button.active{
  color: var(--brand);
  font-weight: 700;
}.tab-button.active::after{
  left: 18px;
  right: 18px;
}.overview-summary-card{
  padding: 28px 26px 30px;
}.overview-summary-card .panel-head{
  margin-bottom: 24px;
}.overview-summary-card .panel-head h3{
  color: #132033;
  font-size: var(--fs-md);
  font-weight: 700;
}.summary-grid{
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr) minmax(270px, 0.82fr);
  gap: 18px;
  padding-top: 0;
  align-items: start;
}.summary-section{
  min-height: 0;
  padding: 18px;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}.summary-hero-card{
  min-height: 210px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}.summary-status-line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #64748b;
  font-size: var(--fs-xs);
}.summary-status-line .badge{
  min-height: 28px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: var(--fs-xs);
  font-weight: 700;
}.summary-focus{
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}.summary-focus > div:first-child{
  min-width: 0;
}.summary-focus-label{
  margin-bottom: 8px;
  color: #718096;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}.summary-focus h3{
  max-width: 100%;
  color: #132033;
  font-size: var(--fs-lg);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}.summary-focus h3 .path-link{
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  text-decoration: none;
}.summary-progress-number{
  align-self: end;
  min-width: 64px;
  color: var(--brand);
  font-size: var(--fs-2xl);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: right;
  white-space: nowrap;
  background: none;
}.progress-rail{
  height: 8px;
  border-radius: 999px;
  background: #e8eef6;
}.progress-rail span{
  background: linear-gradient(90deg, var(--brand) 0%, #10a37f 100%);
}.summary-hero-meta{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  color: #66758c;
  font-size: var(--fs-xs);
  line-height: 1.4;
}.summary-hero-meta span{
  min-width: 0;
  overflow-wrap: anywhere;
}.summary-section-title{
  margin-bottom: 14px;
  color: #718096;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}.summary-metric-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}.metric-card{
  min-height: 86px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  background: #fbfcfe;
}.summary-item .label,
.summary-context-row .label{
  color: #718096;
  font-size: var(--fs-xs);
  line-height: 1.35;
  font-weight: 600;
}.summary-item .value{
  margin-top: 0;
  color: #132033;
  font-size: var(--fs-xl);
  line-height: 1.12;
  font-weight: 700;
  overflow-wrap: anywhere;
}.summary-item .value.value-metric{
  font-size: var(--fs-xl);
  font-weight: 700;
}.summary-item.tone-success .value{
  color: #059669;
}.summary-item.tone-danger .value{
  color: #ff4d4f;
}.summary-item.tone-brand .value{
  color: var(--brand);
}.summary-context-list{
  gap: 0;
}.summary-context-row{
  display: grid;
  gap: 7px;
  padding: 13px 0;
  border-bottom: 1px solid #e8eef6;
}.summary-context-row:first-child{
  padding-top: 0;
}.summary-context-row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}.summary-context-row .value{
  margin-top: 0;
  color: #132033;
  font-size: var(--fs-sm);
  line-height: 1.45;
  font-weight: 600;
  overflow-wrap: anywhere;
}.summary-context-row .value.value-status{
  font-weight: 700;
}.summary-context-row .value.value-time,
.summary-context-row .value.value-compact{
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}/* Overview de-duplication layout: one status card,
one metric strip,
one compact execution info card. */
.summary-grid{
  align-items: stretch;
}.summary-section{
  height: 100%;
  min-height: 230px;
}.summary-hero-card{
  min-height: 230px;
}.summary-metric-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}.metric-card{
  min-height: 94px;
  height: 94px;
  padding: 13px 12px;
}.summary-item .label{
  min-height: 32px;
  display: flex;
  align-items: flex-start;
}.summary-item .value.value-metric{
  font-size: var(--fs-xl);
}.summary-context-list{
  height: calc(100% - 30px);
  display: grid;
  align-content: start;
}.summary-context-row{
  min-height: 58px;
}/* Typography system: keep every panel on one professional scale. */
.workspace-title h2{
  font-size: var(--type-page-title);
  line-height: var(--leading-tight);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-title);
}.employee-registry::before,
.employee-list-head h3,
.panel-head h3,
.config-section-head h3{
  font-size: var(--type-section-title);
  line-height: var(--leading-title);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-normal);
}.summary-section-title,
.field label,
.prompt-library-section label,
.task-row h4,
.date-month-title,
.date-trigger-value,
.employee-name{
  font-size: var(--type-card-title);
  line-height: var(--leading-title);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
}.detail-role,
.config-section-head p,
.hint,
.employee-role,
.employee-role-text,
.summary-context-row .value,
.task-meta-grid strong,
.toast-title,
input,
select,
textarea,
.config-actions button,
.header-actions button,
.prompt-library-row button,
.date-nav-button,
.date-range-clear{
  font-size: var(--type-body-sm);
  line-height: var(--leading-body);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-normal);
}.tab-button{
  font-size: var(--type-body);
  line-height: 1;
  font-weight: var(--weight-bold);
}.tab-button.active{
  font-weight: var(--weight-heavy);
}.badge,
.filter-chip,
.count-badge,
.summary-status-line,
.summary-hero-meta,
.summary-item .label,
.summary-context-row .label,
.stat-chip .label,
.field-required,
.date-trigger-label,
.task-kicker,
.task-meta-grid span,
.snapshot-label,
.toast-message,
.muted{
  font-size: var(--type-meta);
  line-height: var(--leading-dense);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
}.eyebrow{
  font-size: var(--type-caption);
  line-height: var(--leading-dense);
  font-weight: var(--weight-heavy);
  letter-spacing: 0.08em;
}.stat-chip .value,
.summary-progress-number{
  font-family: var(--font-mono);
  font-size: var(--type-number-lg);
  line-height: 1;
  font-weight: var(--weight-heavy);
  letter-spacing: -0.04em;
}.summary-item .value,
.summary-item .value.value-metric{
  font-family: var(--font-mono);
  font-size: var(--type-number-md);
  line-height: 1.1;
  font-weight: var(--weight-heavy);
  letter-spacing: -0.03em;
}.summary-focus h3{
  font-size: var(--fs-lg);
  line-height: var(--leading-title);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-title);
}.summary-context-row .value.value-time,
.summary-context-row .value.value-compact,
.mini-console,
.mono,
.json-box,
.mini-console,
.mono,
.json-box{
  font-size: var(--type-meta);
  line-height: 1.65;
  font-weight: var(--weight-regular);
}.employee-avatar-number{
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  line-height: 1;
  font-weight: var(--weight-heavy);
}/* Prompt workspace border cleanup: one neutral line system,
accent only for state badges/focus. */
.prompt-library-box{
  border-color: #e3eaf3;
  background: #ffffff;
  box-shadow: none;
}.prompt-workspace-head{
  border-bottom-color: #e8eef6;
}.prompt-workspace-editor textarea{
  border-color: #dbe3ee;
  background: #ffffff;
}.prompt-workspace-editor textarea:focus{
  border-color: #10a37f;
}.prompt-library-section{
  border-color: #e3eaf3;
  background: #fbfcfe;
}.prompt-library-row select,
.prompt-library-row input{
  border-color: #dbe3ee;
  background: #ffffff;
}/* Config page radius unification: every outer and inner block uses one geometry scale. */
.config-section,
.prompt-library-box,
.date-range-field{
  border-radius: 10px;
}.config-field-card,
.prompt-library-section,
.date-trigger,
.date-range-panel,
.prompt-workspace-editor textarea,
.path-input-row input,
.prompt-library-row select,
.prompt-library-row input,
.field input,
.field select,
.field textarea{
  border-radius: 8px;
}.field-required,
.badge{
  border-radius: 999px;
}/* Professional color system: one restrained product palette across the full console. */
.app-shell{
  color: var(--text);
}.center-pane,
.workspace-head,
.workspace-card,
.overview-card{
  border-color: var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}.center-pane{
  box-shadow: var(--shadow);
}.employee-registry{
  margin-top: 18px;
}.employee-registry::before{
  margin-top: 0;
}.overview-card{
  padding: 12px;
  margin-bottom: 16px;
}.overview-card .employee-list-head{
  margin-bottom: 9px;
}.stats-grid{
  gap: 8px;
}.stat-chip{
  min-height: 48px;
  padding: 8px 10px;
}.stat-chip .label{
  font-size: var(--type-meta);
  line-height: var(--leading-dense);
}.stat-chip .value{
  margin-top: 2px;
  font-size: var(--type-number-md);
  line-height: var(--leading-tight);
}.config-actions{
  background: var(--panel);
  border-color: var(--line-soft);
}.workspace-title h2,
.employee-registry::before,
.employee-list-head h3,
.panel-head h3,
.config-section-head h3,
.summary-focus h3,
.summary-item .value,
.summary-context-row .value,
.stat-chip .value{
  color: var(--text-strong);
}.detail-role,
.employee-role,
.employee-role-text,
.config-section-head p,
.summary-status-line,
.summary-hero-meta,
.summary-context-row .value,
.hint{
  color: var(--muted);
}.count-badge,
.muted,
.summary-section-title,
.summary-item .label,
.summary-context-row .label,
.stat-chip .label,
.summary-focus-label{
  color: var(--muted-soft);
}/* Global SaaS cleanup: hide explanatory helper copy sitewide. */
.config-section-head p,
.hint,
.config-managed-note,
.readiness-note{
  display: none !important;
}.search-box input,
.filter-chip,
.stat-chip,
.metric-card,
.summary-section,
.config-section,
.config-field-card,
.prompt-library-box,
.prompt-library-section,
.date-range-field,
.date-trigger,
.date-range-panel,
.json-box,
.mono{
  border-color: var(--line-soft);
  background: var(--surface-raised);
  box-shadow: none;
}.search-box input,
.field input,
.field select,
.field textarea,
.prompt-library-row input,
.prompt-library-row select,
.prompt-workspace-editor textarea,
.path-input-row input{
  border-color: var(--line);
  background: var(--surface);
}.search-box input:hover,
.field input:hover,
.field select:hover,
.field textarea:hover,
.prompt-library-row input:hover,
.prompt-library-row select:hover,
.prompt-workspace-editor textarea:hover,
.path-input-row input:hover{
  border-color: var(--line-strong);
}.filter-chip{
  color: var(--muted);
}.filter-chip:hover,
.header-actions button:hover,
.config-actions button:hover,
.prompt-library-row button:hover,
.date-nav-button:hover,
.date-range-clear:hover{
  border-color: var(--line-strong);
  background: var(--surface-hover);
}.filter-chip.active,
.mobile-nav button.active{
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.20);
}.employee-card{
  border-color: var(--line-soft);
  background: var(--surface);
  box-shadow: none;
}.employee-card:hover{
  border-color: var(--brand-line);
  background: var(--brand-tint);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}.employee-card.selected{
  border-color: var(--brand-line);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.16);
}.status-dot{
  background: linear-gradient(135deg, var(--text-strong), #303948);
}.status-dot::after{
  background: var(--idle);
}.status-dot.status-running::after,
.status-dot.status-success::after{
  background: var(--success);
}.status-dot.status-failed::after,
.status-dot.status-stopped::after{
  background: var(--danger);
}.status-dot.status-partial_success::after,
.status-dot.status-stopping::after,
.status-dot.status-unknown::after{
  background: var(--warn);
}.workspace-head{
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--brand-tint) 72%, #f1faf6 100%);
}.hero-avatar{
  background: linear-gradient(145deg, var(--text-strong) 0%, #263243 48%, var(--brand) 135%);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.18);
}.badge-category,
.category-image,
.category-video,
.category-data{
  color: var(--brand-ink);
  background: var(--brand-soft);
  border-color: var(--brand-line);
}.status-idle{
  color: var(--muted);
  background: var(--idle-soft);
  border-color: var(--line-soft);
}.status-running,
.status-success{
  color: var(--success-ink);
  background: var(--success-soft);
  border-color: var(--success-line);
}.status-failed,
.status-stopped{
  color: var(--danger-ink);
  background: var(--danger-soft);
  border-color: var(--danger-line);
}.status-partial_success,
.status-stopping,
.status-unknown{
  color: var(--warn-ink);
  background: var(--warn-soft);
  border-color: var(--warn-line);
}.header-actions button,
.config-actions button,
.prompt-library-row button,
.date-nav-button,
.date-range-clear{
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}.header-actions .primary,
.config-actions button:first-child,
.config-actions .primary{
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
}.header-actions .primary:hover,
.config-actions button:first-child:hover,
.config-actions .primary:hover{
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}.header-actions .secondary,
.config-actions button:last-child{
  color: var(--text);
  background: var(--surface);
}.header-actions .danger{
  color: var(--danger-ink);
  background: var(--danger-soft);
  border-color: var(--danger-line);
}.tab-bar{
  border-bottom-color: var(--line);
}.tab-button{
  color: var(--muted);
}.tab-button:hover{
  color: var(--text-strong);
}.tab-button.active{
  color: var(--brand);
}.tab-button.active::after{
  background: var(--brand);
}.summary-hero-card{
  border-color: var(--brand-line);
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--brand-tint) 100%);
}.summary-progress-number,
.summary-item.tone-brand .value,
.path-link,
.date-trigger-value{
  color: var(--brand);
}.progress-rail,
.task-progress{
  background: var(--surface-muted);
}.progress-rail span,
.task-progress span{
  background: linear-gradient(90deg, var(--brand) 0%, var(--success) 100%);
}.summary-item.tone-success .value{
  color: var(--success);
}.summary-item.tone-danger .value{
  color: var(--danger);
}.summary-context-row{
  border-bottom-color: var(--line-soft);
}.config-shell{
  background: var(--panel);
}.config-section{
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-raised) 100%);
}.config-section-head,
.prompt-workspace-head{
  border-bottom-color: var(--line-soft);
}.config-field-card:focus-within,
.prompt-workspace-editor textarea:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.path-input-row input[readonly]:hover{
  border-color: var(--brand);
  box-shadow: var(--shadow-focus);
}.field-required{
  color: var(--brand-ink);
  background: var(--brand-soft);
  border-color: var(--brand-line);
}.path-link,
.path-input-row input[readonly]{
  border-color: var(--brand-line);
  background: var(--brand-tint);
}.task-kicker,
.eyebrow{
  color: var(--brand);
}.toast{
  border-color: var(--line-soft);
  background: var(--panel);
}/* SaaS workspace: asset hub,
recent outputs,
and cloud readiness sit beside runtime detail. */
.saas-overview-grid{
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}.overview-side-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}.overview-skeleton{
  display: grid;
  gap: 12px;
}.overview-skeleton .skeleton-block{
  min-height: 84px;
}.soft-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: var(--type-meta);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}.soft-chip.is-cloud{
  color: var(--success-ink);
}.soft-chip.is-local{
  color: var(--warn-ink);
}/* Task workspace refinement: denser SaaS rhythm for upload,
record,
and result areas. */
.tab-panel[data-tab-panel="tasks"] .workspace-card.stretch{
  gap: 20px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.96) 100%);
}.tab-panel[data-tab-panel="tasks"] .panel-head{
  margin-top: 2px;
  padding-top: 2px;
}.asset-upload-list{
  display: grid;                                                          /* 根因：原本只写 grid-template-columns 缺 display，整个 grid 失效 */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
  width: 100%;
}.asset-upload-card{
  display: flex;                                                          /* 根因：原 grid-template-rows 无 display 无效；flex column 更直观 */
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(221, 229, 238, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}.asset-upload-card.is-cloud{
  border-color: rgba(45, 212, 191, 0.24);
  background:
    linear-gradient(180deg, rgba(242, 254, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}.asset-upload-card.is-local{
  border-color: rgba(250, 204, 21, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 251, 235, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}.asset-upload-card-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}.asset-upload-card-copy{
  display: grid;
  gap: 8px;
}.asset-upload-card-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.055);
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: var(--weight-bold);
}.asset-upload-card-head strong{
  font-size: var(--fs-lg);
  line-height: 1.3;
}.asset-upload-card-head p{
  margin-top: 0;
  max-width: 32ch;
  line-height: 1.68;
}.asset-upload-card .soft-chip{
  margin-top: 2px;
}.asset-upload-card-actions{
  margin-top: auto;
  align-items: center;
}.asset-upload-card-actions .artifact-link,
.asset-result-actions .artifact-link{
  min-height: 34px;
  padding: 0 12px;
}.employee5-assets-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}.employee5-assets-section{
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.68);
}.employee5-assets-section-head{
  display: grid;
  gap: 6px;
}.employee5-assets-section-head strong{
  color: var(--text-strong);
  font-size: var(--fs-lg);
  line-height: 1.35;
}.employee5-gallery-grid{
  grid-template-columns: 1fr;
}.employee5-brief-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}.employee5-brief-form .field{
  margin: 0;
}.employee5-brief-form .field span{
  margin-bottom: 8px;
}.employee5-brief-form .field input,
.employee5-brief-form .field textarea{
  background: rgba(255, 255, 255, 0.96);
}.employee5-brief-group{
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}.employee5-brief-group-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}.employee5-brief-group-head::-webkit-details-marker{
  display: none;
}.employee5-brief-group-head strong{
  color: var(--text-strong);
  font-size: var(--fs-sm);
  line-height: 1.35;
}.employee5-brief-group-head span{
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: var(--weight-bold);
}.employee5-brief-group[open] .employee5-brief-group-head span{
  color: #0f766e;
}.employee5-brief-group-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}.employee5-brief-group-primary .employee5-brief-group-head{
  cursor: default;
}.employee5-asset-thumb-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}.employee5-asset-thumb-grid .asset-thumb-card{
  padding: 8px;
  gap: 6px;
  border-radius: 12px;
}.employee5-asset-thumb-grid .asset-thumb-media{
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}.employee5-asset-thumb-grid .asset-thumb-name{
  min-height: auto;
  -webkit-line-clamp: 1;
}.employee5-asset-thumb-grid .asset-thumb-meta{
  font-size: var(--fs-2xs);
}.employee5-asset-thumb-grid .asset-thumb-remove{
  width: 24px;
  height: 24px;
  font-size: var(--fs-sm);
}.asset-thumb-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  max-height: none;
  overflow: visible;
  padding: 2px 6px 6px 2px;
}.asset-thumb-card{
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(218, 226, 236, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}.asset-thumb-card:hover{
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.30);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}.asset-thumb-media{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(244, 247, 250, 0.98) 0%, rgba(236, 242, 247, 0.98) 100%);
  border: 1px solid rgba(222, 230, 238, 0.96);
}.asset-thumb-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.18s ease;
}.asset-thumb-card:hover .asset-thumb-media img{
  transform: scale(1.03);
}.asset-thumb-file{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted-soft);
  font-size: var(--fs-xs);
  font-weight: var(--weight-heavy);
  letter-spacing: 0.08em;
}.asset-thumb-remove{
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(204, 214, 224, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #475569;
  font-size: var(--fs-md);
  line-height: 1;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}.asset-thumb-remove:hover{
  border-color: rgba(248, 113, 113, 0.42);
  background: #fff1f2;
  color: #dc2626;
}.asset-thumb-name{
  min-width: 0;
  color: var(--text-strong);
  font-size: var(--fs-xs);
  line-height: 1.45;
  font-weight: var(--weight-bold);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.9em;
}.asset-thumb-meta,
.asset-thumb-empty{
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.55;
}.asset-thumb-empty{
  padding: 12px 14px;
  border: 1px dashed rgba(203, 213, 225, 0.96);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.88);
}.asset-record-block{
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}.asset-record-block-head{
  align-items: center;
}.asset-record-list{
  gap: 10px;
}.asset-record-row{
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(225, 232, 239, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 253, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}.asset-record-row-result{
  border-color: rgba(191, 234, 224, 0.88);
  background:
    linear-gradient(180deg, rgba(245, 255, 252, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}.asset-record-main{
  gap: 6px;
}.asset-record-main strong{
  font-size: var(--fs-sm);
  font-weight: var(--weight-bold);
  line-height: 1.45;
}.asset-record-main span,
.asset-record-side span,
.asset-record-side time,
.asset-record-block-head span{
  font-size: var(--fs-xs);
  line-height: 1.55;
}.asset-record-side{
  min-width: 128px;
  gap: 6px;
}.asset-record-side-actions{
  justify-items: end;
}.asset-result-actions{
  justify-content: flex-end;
}.center-pane,
.center-card,
.workspace-card,
.employee-card,
.employee-avatar,
.overview-card,
.workspace-head,
.search-box input,
.task-search-box input,
.filter-chip,
.stat-chip,
.metric-card,
.summary-section,
.config-section,
.config-field-card,
.prompt-library-box,
.prompt-library-section,
.path-input-row input,
.path-selected-name,
.date-trigger,
.date-range-panel,
.date-nav-button,
.date-range-clear,
.json-box,
.mono,
.list .item,
.task-item,
.artifact-item,
.artifact-link,
.asset-center-shell,
.asset-center-panel,
.asset-upload-card,
.asset-thumb-card,
.asset-thumb-media,
.asset-thumb-empty,
.asset-record-block,
.asset-record-row,
.modal-panel,
.modal-form input,
.modal-form select,
.modal-form textarea,
button.primary,
button.secondary,
button.danger,
input,
select,
textarea{
  border-radius: 0 !important;
}.task-center-toolbar{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 225, 234, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}.task-search-box input{
  min-height: 44px;
  padding: 0 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}.task-filter-chips{
  justify-content: flex-end;
}.task-item{
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(216, 225, 234, 0.94);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 253, 0.98) 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}.task-item.selected{
  border-color: rgba(20, 184, 166, 0.26);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(244, 255, 251, 0.98) 0%, rgba(237, 251, 247, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.08);
}.task-row h4{
  font-size: var(--fs-md);
  line-height: 1.45;
}/* Overview single-card mode */
.saas-overview-grid{
  grid-template-columns: 1fr;
  gap: 0;
}.overview-summary-card{
  width: 100%;
  padding: 24px 24px 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}.overview-summary-card .panel-head{
  margin-bottom: 18px;
}.overview-summary-card .panel-head h3{
  font-size: var(--fs-lg);
}.summary-grid{
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.95fr) minmax(260px, 0.82fr);
  gap: 16px;
  align-items: start;
}.summary-section{
  min-height: 198px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 253, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}.summary-hero-card{
  min-height: 198px;
  gap: 12px;
  border-color: rgba(183, 231, 222, 0.92);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(244, 255, 251, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}.summary-status-line{
  font-size: var(--fs-2xs);
}.summary-focus h3{
  font-size: var(--fs-lg);
}.summary-progress-number{
  font-size: var(--fs-2xl);
}.summary-metric-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}.metric-card{
  min-height: 84px;
  height: auto;
  padding: 13px 12px;
  border-radius: 14px;
}.summary-context-list{
  height: auto;
  gap: 0;
}.summary-context-row{
  min-height: 52px;
}/* Employee rail rhythm: normalize title,
search,
filters,
and list spacing. */
.employee-registry::before{
  display: none !important;
}.employee-registry,
.overview-card{
  margin: 0 !important;
}.employee-registry{
  margin-top: 0 !important;
  padding-top: 14px !important;
}.employee-count-head{
  padding: 0 !important;
  margin: 0 0 10px !important;
  align-items: flex-start;
}.employee-count-head .panel-copy{
  gap: 2px;
}.employee-count-head .count-badge,
.employee-count-head .count-badge[hidden]{
  display: none !important;
}.search-filter-bar{
  padding: 0 0 12px !important;
  margin-bottom: 0 !important;
  gap: 10px !important;
}.filter-chips{
  gap: 8px !important;
}.employee-list{
  padding: 0 0 4px !important;
  gap: 10px !important;
}.employee-card{
  min-height: 84px !important;
  padding: 14px 16px !important;
}
