/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #090f1e;
  --panel: #0f1930;
  --panel-soft: #142340;
  --line: #22365f;
  --text: #ecf0fb;
  --muted: #a9b7d6;
  --accent: #4cd7a5;
  --warn: #ffd479;
  --danger: #ff7f88;
  --info: #8db4ff;
}

* {
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--text);
  background: radial-gradient(circle at 15% -20%, #1d315c 0%, transparent 40%), radial-gradient(circle at 85% -40%, #223f7a 0%, transparent 45%), var(--bg);
  margin: 0;
  font-family: IBM Plex Sans, Segoe UI, sans-serif;
}

h1, h2, h3, p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 8px;
}

.appLayout {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  border-right: 1px solid var(--line);
  z-index: 100;
  background: linear-gradient(#0c1526, #090f1e);
  flex-direction: column;
  width: 210px;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.sidebarLogo {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  display: flex;
}

.sidebarLogoMark {
  font-size: 1.3rem;
}

.sidebarLogoText {
  letter-spacing: .03em;
  color: var(--text);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}

.sidebarLinks {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  padding: 12px 8px;
  display: flex;
}

.sidebarLink {
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: flex;
}

.sidebarLink:hover {
  color: var(--text);
  background: #ffffff0f;
}

.sidebarLinkActive {
  font-weight: 600;
  color: var(--accent) !important;
  background: #4cd7a51f !important;
}

.sidebarIcon {
  text-align: center;
  width: 20px;
  font-size: 1rem;
}

.sidebarFooter {
  border-top: 1px solid var(--line);
  color: var(--muted);
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: .76rem;
  display: flex;
}

.sidebarFooterDot {
  background: var(--accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.mobileNav {
  border-top: 1px solid var(--line);
  z-index: 200;
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(#0c1526ee, #090f1eee);
  align-items: stretch;
  height: 62px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobileNavLink {
  color: var(--muted);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  font-size: .65rem;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.mobileNavLink:hover, .mobileNavLinkActive {
  color: var(--accent) !important;
}

.mobileNavIcon {
  font-size: 1.2rem;
  line-height: 1;
}

.pageContent {
  flex: 1;
  min-height: 100vh;
  margin-left: 210px;
}

.shell {
  gap: 22px;
  width: min(1140px, 100% - 48px);
  margin: 0 auto;
  padding: 28px 0 56px;
  display: grid;
}

.pageHeader {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}

.pageTitle {
  margin-bottom: 4px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.pageSubtitle {
  color: var(--muted);
  font-size: .88rem;
}

.quickNav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.quickNavCard {
  color: var(--text);
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: border-color .15s, background .15s;
  display: flex;
}

.quickNavCard:hover {
  border-color: var(--accent);
  background: linear-gradient(#193040, #0f1930);
}

.quickNavCard strong {
  margin-bottom: 2px;
  font-size: .95rem;
  display: block;
}

.quickNavCard p {
  color: var(--muted);
  margin: 0;
  font-size: .8rem;
}

.quickNavIcon {
  margin-top: 2px;
  font-size: 1.4rem;
}

.btn {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, background .15s;
  display: inline-flex;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btnPrimary {
  background: var(--accent);
  color: #060e20;
  border-color: var(--accent);
}

.btnPrimary:hover:not(:disabled) {
  opacity: .85;
}

.btnGhost {
  color: var(--muted);
  border-color: var(--line);
  background: none;
}

.btnGhost:hover:not(:disabled) {
  color: var(--text);
  background: #ffffff0f;
}

.btnApprove {
  color: var(--accent);
  background: #4cd7a526;
  border-color: #4cd7a566;
}

.btnApprove:hover:not(:disabled) {
  background: #4cd7a540;
}

.btnReject {
  color: var(--danger);
  background: #ff7f881f;
  border-color: #ff7f8859;
}

.btnReject:hover:not(:disabled) {
  background: #ff7f8838;
}

.btnWarn {
  color: var(--warn);
  background: #ffd4791f;
  border-color: #ffd47959;
}

.btnWarn:hover:not(:disabled) {
  background: #ffd47933;
}

.kanbanPage {
  min-height: 100vh;
  padding: 24px 24px 56px;
}

.kanbanToolbar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  display: flex;
}

.kanbanToolbarLeft {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.filterSearch {
  align-items: center;
  display: flex;
  position: relative;
}

.filterSearchIcon {
  pointer-events: none;
  font-size: .8rem;
  position: absolute;
  left: 8px;
}

.filterInput {
  border: 1px solid var(--line);
  color: var(--text);
  background: #00000059;
  border-radius: 8px;
  width: 180px;
  padding: 6px 10px 6px 28px;
  font-size: .84rem;
}

.filterInput:focus {
  border-color: var(--accent);
  outline: none;
}

.filterInput::placeholder {
  color: var(--muted);
}

.filterSelect {
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  background: #00000059;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: .84rem;
}

.filterSelect:focus {
  border-color: var(--accent);
  outline: none;
}

.filterClear {
  padding: 6px 10px !important;
  font-size: .8rem !important;
}

.filterSummary {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .82rem;
  display: flex;
}

.filterTag {
  color: var(--accent);
  background: #4cd7a51a;
  border: 1px solid #4cd7a54d;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .76rem;
}

.syncIndicator {
  color: var(--muted);
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  display: flex;
}

.syncDot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: background .4s;
  animation: 2s ease-in-out infinite syncPulse;
}

@keyframes syncPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.syncLabel {
  color: var(--muted);
  font-size: .78rem;
}

.syncBtn {
  padding: 4px 8px !important;
  font-size: .9rem !important;
}

.kanbanBoard {
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  display: flex;
  overflow-x: auto;
}

.kanbanCol {
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 12px;
  flex: 0 0 250px;
  min-height: 200px;
  padding-bottom: 12px;
  transition: border-color .15s;
}

.kanbanColOver {
  border-color: var(--accent);
  background: linear-gradient(#162635, #0f1f30);
}

.kanbanColHead {
  border-top: 3px solid;
  border-radius: 11px 11px 0 0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 10px;
  display: flex;
}

.kanbanColLabel {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.kanbanColCount {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #0000004d;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .76rem;
}

.kanbanCards {
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
  padding: 0 10px;
  display: flex;
}

.kanbanEmpty {
  text-align: center;
  color: var(--line);
  padding: 20px 0;
  font-size: .8rem;
}

.kanbanCard {
  border: 1px solid var(--line);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  background: #050c1cb3;
  border-radius: 10px;
  padding: 12px;
  transition: border-color .15s, transform .1s, box-shadow .15s;
}

.kanbanCard:hover {
  border-color: #4cd7a559;
  box-shadow: 0 4px 14px #0000004d;
}

.kanbanCardDragging {
  opacity: .5;
  transform: rotate(1.5deg);
}

.kanbanCardTop {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.kanbanCardId {
  color: var(--muted);
  font-size: .72rem;
}

.kanbanCardPriority {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .72rem;
  font-weight: 700;
}

.kanbanCardTitle {
  margin: 0 0 8px;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.35;
}

.kanbanCardMeta {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
  display: flex;
}

.kanbanCardAgent {
  color: var(--info);
  background: #8db4ff1a;
  border: 1px solid #8db4ff33;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: .72rem;
}

.kanbanCardSource {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #ffffff0f;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: .72rem;
}

.kanbanCardResult {
  color: var(--muted);
  margin: 4px 0 6px;
  font-size: .74rem;
  line-height: 1.3;
}

.kanbanCardActions {
  border-top: 1px solid var(--line);
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  display: flex;
}

.kanbanCardActions .btn {
  flex: 1;
  padding: 5px 8px;
  font-size: .75rem;
}

.kanbanCardRun {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 8px;
}

.btnRun {
  width: 100%;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: .02em;
  background: #4cd7a514;
  border: 1px solid #4cd7a540;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 600;
  transition: background .15s, opacity .15s;
}

.btnRun:hover:not(:disabled) {
  border-color: var(--accent);
  background: #4cd7a52e;
}

.btnRunning, .btnRun:disabled {
  opacity: .6;
  cursor: not-allowed;
  animation: 1.2s ease-in-out infinite runPulse;
}

@keyframes runPulse {
  0%, 100% {
    opacity: .6;
  }

  50% {
    opacity: .9;
  }
}

.viewToggle {
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  overflow: hidden;
}

.viewToggleBtn {
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 7px 13px;
  font-size: .8rem;
  transition: background .15s, color .15s;
}

.viewToggleBtn + .viewToggleBtn {
  border-left: 1px solid var(--line);
}

.viewToggleBtn:hover {
  color: var(--text);
  background: #ffffff0d;
}

.viewToggleActive {
  font-weight: 600;
  color: var(--accent) !important;
  background: #4cd7a51a !important;
}

.swimLanes {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.swimLane {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border-radius: 14px;
  overflow: hidden;
}

.swimLaneHeader {
  border-left: 4px solid;
  border-bottom: 1px solid var(--line);
  background: #0003;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  display: flex;
}

.swimLaneCollapse {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 2px 4px;
  font-size: .7rem;
}

.swimLaneIcon {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.swimLaneInfo {
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.swimLaneName {
  font-size: .92rem;
  font-weight: 700;
}

.swimLaneAgent {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .72rem;
}

.swimLaneTaskCount {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #0000004d;
  border-radius: 999px;
  flex-shrink: 0;
  margin-left: auto;
  padding: 2px 8px;
  font-size: .76rem;
}

.swimLaneCols {
  -webkit-overflow-scrolling: touch;
  gap: 0;
  display: flex;
  overflow-x: auto;
}

.swimLaneCol {
  border-top: 3px solid;
  flex: 1;
  min-width: 160px;
  min-height: 100px;
  padding: 0 8px 12px;
  transition: background .15s;
}

.swimLaneCol + .swimLaneCol {
  border-left: 1px solid var(--line);
}

.swimLaneCol.kanbanColOver {
  background: #4cd7a50f;
}

.swimLaneColHead {
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 6px;
  display: flex;
}

.swimLaneColLabel {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.swimLaneColCount {
  color: var(--muted);
  font-size: .7rem;
}

.gitBadge {
  border: 1px solid var(--line);
  background: #0000004d;
  border-radius: 8px;
  flex-shrink: 1;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 420px;
  padding: 4px 10px;
  font-size: .74rem;
  display: flex;
  overflow: hidden;
}

.gitBadgeBranch {
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}

.gitBadgeDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.gitBadgeDotActive {
  background: var(--accent);
  animation: 2s ease-in-out infinite syncPulse;
}

.gitBadgeDotIdle {
  background: var(--muted);
}

.gitBadgeCommit {
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
}

.gitBadgeTime {
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.gitBadgeChanges {
  color: var(--warn);
  white-space: nowrap;
  background: #fbbd231f;
  border: 1px solid #fbbd2340;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 1px 5px;
}

.gitBadgeLoading {
  color: var(--muted);
  font-size: .72rem;
  font-style: italic;
}

.modalOverlay {
  z-index: 200;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #040916d1;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  border: 1px solid var(--line);
  background: linear-gradient(#132035, #0c1828);
  border-radius: 16px;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px #0009;
}

.modalHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 0;
  display: flex;
}

.modalId {
  color: var(--muted);
  margin-bottom: 4px;
  font-size: .78rem;
  display: block;
}

.modalTitle {
  font-size: 1.1rem;
  line-height: 1.3;
}

.modalClose {
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  background: none;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: .85rem;
  display: flex;
}

.modalClose:hover {
  color: var(--text);
  background: #ffffff0f;
}

.modalBody {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px 20px;
  display: grid;
}

.modalField label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: .76rem;
  display: block;
}

.modalFieldFull {
  grid-column: span 2;
}

.modalSelect {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--text);
  background: #00000059;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .85rem;
}

.modalInput {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--text);
  box-sizing: border-box;
  background: #00000059;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .85rem;
}

.modalInput:focus, .modalSelect:focus {
  border-color: var(--accent);
  outline: none;
}

.modalBadge {
  text-transform: capitalize;
  border: 1px solid;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .82rem;
  font-weight: 700;
  display: inline-block;
}

.modalMuted {
  color: var(--muted);
  font-size: .85rem;
}

.modalDesc {
  color: var(--muted);
  white-space: pre-wrap;
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
}

.modalArtifacts {
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.modalArtifacts li {
  color: var(--muted);
  font-size: .82rem;
}

.modalActions {
  gap: 8px;
  margin-top: 10px;
  display: flex;
}

.modalFooter {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  display: flex;
}

.modalApproval {
  background: #ffd4790d;
  border: 1px solid #ffd47940;
  border-radius: 10px;
  grid-column: span 2;
  padding: 16px;
}

.modalApproval h3 {
  color: var(--warn);
  margin-bottom: 12px;
  font-size: .9rem;
}

.approvalsPage {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.approvalQueue {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.approvalQueueHead {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.approvalQueueHead h2 {
  margin: 0;
}

.approvalQueueHint {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: .78rem;
}

.approvalQueueHint kbd {
  background: #ffffff14;
  border: 1px solid #ffffff26;
  border-radius: 4px;
  margin: 0 2px;
  padding: 1px 5px;
  font-family: inherit;
  font-size: .7rem;
}

.approvalNav {
  align-items: center;
  gap: 8px;
  display: flex;
}

.approvalNavBtn {
  min-height: 36px !important;
  padding: 6px 12px !important;
  font-size: 1rem !important;
}

.approvalNavLabel {
  color: var(--muted);
  text-align: center;
  min-width: 48px;
  font-size: .85rem;
}

.approvalPills {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.approvalPill {
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  background: #0000004d;
  border-radius: 999px;
  padding: 3px 10px;
  font-family: monospace;
  font-size: .74rem;
  transition: all .15s;
}

.approvalPill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.approvalPillActive {
  border-color: var(--accent);
  color: var(--accent);
  background: #4cd7a51f;
}

.approvalAllDone {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 24px;
  display: flex;
}

.approvalAllDoneIcon {
  font-size: 3rem;
}

.approvalAllDone h3 {
  margin: 0;
  font-size: 1.2rem;
}

.approvalAllDone p {
  color: var(--muted);
  margin: 0;
  font-size: .88rem;
}

.decisionCard {
  flex-direction: column;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.decisionCardHead {
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px 16px;
  display: flex;
}

.decisionCardIds {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.decisionCardId {
  color: var(--accent);
  font-size: .82rem;
}

.decisionCardArrow {
  color: var(--muted);
  font-size: .8rem;
}

.decisionCardTaskId {
  color: var(--muted);
  font-size: .82rem;
}

.decisionCardTitle {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

.decisionDraft {
  flex-direction: column;
  padding: 0 24px 20px;
  display: flex;
}

.decisionDraftMeta {
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  margin-bottom: 14px;
  padding: 14px 0 10px;
  display: flex;
}

.decisionDraftRow {
  align-items: baseline;
  gap: 12px;
  padding: 3px 0;
  font-size: .85rem;
  display: flex;
}

.decisionDraftLabel {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
  min-width: 52px;
  font-size: .75rem;
}

.decisionDraftValue {
  color: var(--text);
}

.decisionDraftSubject {
  font-size: .92rem;
  font-weight: 600;
}

.decisionDraftBody {
  color: #c8dcffd9;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  background: #00000040;
  border-radius: 10px;
  max-height: 320px;
  padding: 14px 16px;
  font-size: .84rem;
  line-height: 1.6;
  overflow-y: auto;
}

.decisionNoDraft {
  color: var(--muted);
  padding: 16px 24px;
  font-size: .88rem;
  font-style: italic;
}

.decisionActions {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.decisionApprove, .decisionDecline {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background .15s, transform .1s;
  display: flex;
  border: none !important;
  border-radius: 0 !important;
  min-height: 72px !important;
  padding: 22px 20px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}

.decisionApprove {
  color: var(--accent);
  background: #4cd7a51a;
  border-right: 1px solid var(--line) !important;
  border-bottom-left-radius: 16px !important;
}

.decisionApprove:hover:not(:disabled) {
  background: #4cd7a533;
  transform: translateY(-1px);
}

.decisionDecline {
  color: var(--danger);
  background: #ef444412;
  border-bottom-right-radius: 16px !important;
}

.decisionDecline:hover:not(:disabled) {
  background: #ef444429;
  transform: translateY(-1px);
}

.decisionApprove:disabled, .decisionDecline:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.decisionApprove kbd, .decisionDecline kbd {
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 400;
}

.decisionRejectPanel {
  border-top: 1px solid var(--line);
  background: #ef44440a;
  flex-direction: column;
  gap: 10px;
  padding: 18px 24px 20px;
  display: flex;
}

.decisionRejectLabel {
  color: var(--danger);
  margin: 0;
  font-size: .85rem;
  font-weight: 600;
}

.decisionRejectLabel span {
  color: var(--muted);
  font-weight: 400;
}

.approvalToast {
  z-index: 1000;
  pointer-events: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  animation: .2s toastIn, .3s 1.5s forwards toastOut;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 32px #0006;
}

.approvalToastApprove {
  color: #0a1f18;
  background: #4cd7a5f2;
}

.approvalToastReject {
  color: #fff;
  background: #ef4444f2;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.approvalDraft {
  border: 1px solid var(--line);
  background: #00000059;
  border-radius: 8px;
  margin: 12px 0;
  padding: 12px;
}

.approvalDraftMeta {
  color: var(--muted);
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  font-size: .84rem;
  display: flex;
}

.approvalBody {
  color: var(--muted);
  white-space: pre-wrap;
  max-height: 260px;
  margin: 0;
  font-size: .8rem;
  line-height: 1.5;
  overflow-y: auto;
}

.rejectForm {
  margin-top: 10px;
}

.rejectInput {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--text);
  resize: vertical;
  box-sizing: border-box;
  background: #00000059;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: .84rem;
}

.rejectInput:focus {
  border-color: var(--danger);
  outline: none;
}

.morningBriefSection {
  grid-template-columns: 1fr 380px;
  align-items: start;
  gap: 16px;
  display: grid;
}

.todaysFocus {
  padding: 20px;
}

.focusList {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.focusItem {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  display: flex;
}

.focusItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.focusItemLeft {
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.focusStatus {
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  border: 1px solid;
  border-radius: 6px;
  flex-shrink: 0;
  padding: 2px 7px;
  font-size: .7rem;
  font-weight: 700;
}

.focusItemText {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.focusItemTitle {
  color: var(--text);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .9rem;
  font-weight: 500;
  overflow: hidden;
}

.focusItemMeta {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  display: flex;
}

.focusHighTag {
  color: var(--danger);
  letter-spacing: .08em;
  background: #ef44441f;
  border: 1px solid #ef44444d;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .65rem;
  font-weight: 800;
}

.focusItemArrow {
  color: var(--muted);
  flex-shrink: 0;
  padding: 4px 6px;
  font-size: .9rem;
  text-decoration: none;
  transition: color .15s;
}

.focusItemArrow:hover {
  color: var(--accent);
}

.briefRight {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.briefEmpty {
  color: var(--muted);
  align-items: center;
  gap: 10px;
  padding: 18px 0 4px;
  font-size: .88rem;
  display: flex;
}

.quickApprovalList {
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  display: flex;
}

.quickApprovalCard {
  border: 1px solid var(--line);
  background: #0003;
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  display: flex;
}

.quickApprovalHeader {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.quickApprovalMeta {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.quickApprovalId {
  color: var(--accent);
  font-size: .78rem;
}

.quickApprovalTask {
  color: var(--text);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: .86rem;
  font-weight: 500;
  overflow: hidden;
}

.quickApprovalDraft {
  background: #4cd7a50d;
  border: 1px solid #4cd7a526;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  display: flex;
}

.quickApprovalDraftRow {
  align-items: baseline;
  gap: 8px;
  font-size: .82rem;
  display: flex;
}

.quickApprovalDraftLabel {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
  min-width: 48px;
  font-size: .74rem;
}

.quickApprovalDraftValue {
  color: var(--text);
}

.quickApprovalActions {
  gap: 8px;
  display: flex;
}

.quickApprovalActions .btn {
  flex: 1;
}

.quickApprovalRejectForm {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.morningBriefWidget {
  flex-direction: column;
  gap: 14px;
  height: 100%;
  display: flex;
}

.heroLeftBrief .morningBriefWidget {
  background: none;
  border: none;
  border-radius: 0;
  flex: 1;
  padding: 0;
}

.morningBriefHeader {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.morningBriefTitle {
  color: var(--text);
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.morningBriefIcon {
  font-size: 1.1rem;
}

.morningBriefBtn {
  white-space: nowrap;
  min-height: 32px !important;
  padding: 6px 12px !important;
  font-size: .8rem !important;
}

.morningBriefPlaceholder {
  color: var(--muted);
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
}

.briefSection {
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  display: flex;
}

.briefSection:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.briefSectionHead {
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  display: flex;
}

.briefSectionIcon {
  font-size: .9rem;
}

.briefSectionTitle {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  flex: 1;
  font-size: .75rem;
  font-weight: 700;
}

.briefSectionErr {
  color: var(--danger);
  font-size: .72rem;
}

.briefLoading {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: .82rem;
  display: flex;
}

.briefLoadError {
  color: var(--danger);
  padding: 8px 0;
  font-size: .82rem;
}

.morningBriefLoading {
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  display: flex;
}

.morningBriefLoadingText {
  color: var(--muted);
  font-size: .82rem;
  font-style: italic;
}

.calEvent {
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: .82rem;
  display: flex;
}

.calEvent + .calEvent {
  border-top: 1px solid #ffffff0a;
}

.calEventAllDay {
  opacity: .6;
}

.calEventTime {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 68px;
  font-size: .76rem;
}

.calEventTitle {
  color: var(--text);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.calZoomBadge {
  color: #5ba8f5;
  background: #2d8cf026;
  border: 1px solid #2d8cf04d;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 1px 5px;
  font-size: .65rem;
  font-weight: 700;
}

.calLocation {
  opacity: .7;
  flex-shrink: 0;
  font-size: .75rem;
}

.newsTopic {
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
  display: flex;
}

.newsTopicLabel {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 2px;
  font-size: .7rem;
  font-weight: 700;
}

.newsStory {
  border-radius: 4px;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0;
  text-decoration: none;
  transition: background .1s;
  display: flex;
}

.newsStory:hover {
  background: #ffffff08;
}

.newsStoryTitle {
  color: var(--text);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .82rem;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.newsStory:hover .newsStoryTitle {
  color: var(--accent);
}

.newsStoryMeta {
  color: var(--muted);
  font-size: .72rem;
}

.briefBoardRow {
  flex-wrap: wrap;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 6px 0 !important;
}

.boardPill {
  background: #00000040;
  border: 1px solid #ffffff12;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .74rem;
  font-weight: 600;
}

.briefAiSection {
  gap: 8px !important;
}

.briefAiBtn {
  min-height: 26px !important;
  padding: 3px 10px !important;
  font-size: .76rem !important;
}

.briefAiPlaceholder {
  color: var(--muted);
  margin: 0;
  font-size: .8rem;
  font-style: italic;
}

.briefAiError {
  color: var(--warn);
  background: #fbbd2312;
  border: 1px solid #fbbd2333;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .8rem;
  line-height: 1.5;
}

.briefAiError a {
  color: var(--accent);
  text-decoration: underline;
}

.loadingDot {
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  animation: 1.2s ease-in-out infinite dotPulse;
}

.loadingDot:nth-child(2) {
  animation-delay: .2s;
}

.loadingDot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: .4;
    transform: scale(.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.morningBriefError {
  color: var(--danger);
  background: #ef444414;
  border: 1px solid #ef444433;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: .84rem;
  display: flex;
}

.morningBriefResult {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.morningBriefBullets {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.morningBriefBullets li {
  color: var(--text);
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
}

.morningBriefBullets li:before {
  content: "›";
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.morningBriefText {
  color: #c8dcffcc;
  border-top: 1px solid #4cd7a51f;
  margin: 0;
  padding-top: 6px;
  font-size: .88rem;
  line-height: 1.65;
}

.morningBriefTs {
  color: var(--muted);
  text-align: right;
  margin: 0;
  font-size: .74rem;
}

@media (max-width: 900px) {
  .morningBriefSection {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px #050b1c59;
}

.hero {
  flex-direction: column;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.heroTop {
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 28px 28px 24px;
  display: grid;
}

.heroLeft {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.heroActions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.heroActionBtn {
  margin-top: 20px;
  display: inline-flex;
}

.heroLeftBrief {
  flex-direction: column;
  flex: 1;
  min-height: 0;
  margin-top: 20px;
  display: flex;
}

.heroDivider {
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 0 28px;
  display: flex;
}

.heroDivider:before, .heroDivider:after {
  content: "";
  background: var(--line);
  flex: 1;
  height: 1px;
}

.heroDividerLabel {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
  padding: 6px 0;
  font-size: .75rem;
  font-weight: 700;
}

.heroBriefRow {
  grid-template-columns: 1fr 320px;
  min-height: 200px;
  display: grid;
}

.heroBriefPane {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
}

.heroBriefPane + .heroBriefPane {
  border-left: 1px solid var(--line);
}

.heroPaneLabel {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 700;
}

.focusMore {
  color: var(--accent);
  opacity: .8;
  margin-top: 10px;
  font-size: .78rem;
  text-decoration: none;
  display: block;
}

.focusMore:hover {
  opacity: 1;
}

.kicker {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-size: .78rem;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

.heroText {
  color: var(--muted);
  line-height: 1.45;
}

.heroStats {
  gap: 12px;
  display: grid;
}

.heroStats div, .heroStats a.heroStatLink {
  border: 1px solid var(--line);
  background: #070f2199;
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
}

.heroStats a.heroStatLink {
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: block;
}

.heroStats a.heroStatLink:hover {
  border-color: var(--accent);
  background: #4cd7a512;
}

.heroStats span {
  color: var(--muted);
  font-size: .85rem;
}

.heroStats strong {
  margin-top: 4px;
  font-size: 1.4rem;
  display: block;
}

.sectionHead {
  justify-content: space-between;
  align-items: center;
  margin: 4px 0 10px;
  display: flex;
}

h2 {
  font-size: 1.1rem;
}

.manifesto {
  padding: 18px;
}

.manifesto ul {
  color: var(--muted);
  line-height: 1.5;
}

.agentGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.agentCard {
  padding: 14px;
}

.agentHeader {
  justify-content: space-between;
  gap: 10px;
  display: flex;
}

.agentInfo {
  align-items: center;
  gap: 12px;
  display: flex;
}

.agentAvatar {
  background: var(--panel-soft);
  border: 2px solid var(--line);
  border-radius: 8px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.avatarImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.agentHeader p {
  color: var(--muted);
  margin-top: 2px;
  font-size: .88rem;
}

.statusWrap {
  white-space: nowrap;
  color: var(--muted);
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  display: inline-flex;
}

.statusDot {
  border-radius: 999px;
  width: 9px;
  height: 9px;
}

.statusOnline {
  background: var(--accent);
}

.statusBusy {
  background: var(--warn);
}

.statusIdle {
  background: var(--info);
}

.statusOffline {
  background: var(--danger);
}

.agentStats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  display: grid;
}

.agentStats dt {
  color: var(--muted);
  font-size: .76rem;
}

.agentStats dd {
  margin: 2px 0 0;
  font-weight: 600;
}

.tableWrap {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
}

th, td {
  text-align: left;
  border-top: 1px solid var(--line);
  padding: 13px 16px;
}

th {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.chip {
  border: 1px solid;
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px;
  font-size: .78rem;
  display: inline-flex;
}

.queued {
  color: var(--info);
  background: #4a74c01f;
  border-color: #3b5d9c;
}

.running {
  color: var(--accent);
  background: #3fac8624;
  border-color: #2d7c64;
}

.blocked {
  color: var(--danger);
  background: #a4414d1f;
  border-color: #904651;
}

.complete {
  color: #b0becf;
  background: #4c5a6f33;
  border-color: #59657a;
}

.blueprintGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.blueprintCard {
  padding: 16px;
}

pre {
  color: #cbd8f2;
  background: #03081499;
  border: 1px solid #263b67;
  border-radius: 10px;
  margin: 0;
  padding: 12px;
  font-size: .76rem;
  line-height: 1.4;
  overflow-x: auto;
}

.tagWrap {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.tag {
  color: #d4e1ff;
  background: #3d65ab2b;
  border: 1px solid #345287;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .78rem;
}

.implementation, .roadmap {
  padding: 18px;
}

.implementation ol, .roadmap ol {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .quickNav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .agentGrid, .blueprintGrid, .quickNav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heroTop {
    grid-template-columns: 1fr;
  }

  .heroLeftBrief {
    margin-top: 16px;
  }
}

.kanbanBoard {
  scroll-snap-type: x mandatory;
  scroll-padding-left: 12px;
}

.kanbanCol {
  scroll-snap-align: start;
}

.kanbanDots {
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 0 4px;
  display: flex;
}

.kanbanDot {
  background: var(--line);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  transition: background .2s, transform .2s;
}

.kanbanDot:hover, .kanbanDotActive {
  transform: scale(1.3);
}

.kanbanDotLabel {
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-left: 6px;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s;
}

.filterToggle {
  white-space: nowrap;
}

.mobileFilterPanel {
  border: 1px solid var(--line);
  background: #0000004d;
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px;
  animation: .2s slideDown;
  display: flex;
}

.mobileFilterPanel .filterSelect {
  flex: 1;
  min-width: 140px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .pageContent {
    margin-left: 0;
    padding-bottom: 72px;
  }

  .mobileNav {
    display: flex !important;
  }

  .btn {
    min-height: 44px;
    padding: 10px 16px;
  }

  .syncBtn {
    min-height: 36px !important;
    padding: 6px 10px !important;
  }

  .filterClear {
    min-height: 36px !important;
  }

  .kanbanPage {
    padding: 14px 12px 80px;
  }

  .kanbanToolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .kanbanToolbarLeft {
    flex-wrap: nowrap;
    gap: 8px;
    display: flex;
  }

  .kanbanToolbarLeft .btn {
    flex-shrink: 0;
  }

  .filterSearch {
    flex: 1;
  }

  .filterInput {
    width: 100%;
  }

  .syncIndicator {
    align-self: flex-end;
    font-size: .74rem;
  }

  .kanbanBoard {
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: auto;
  }

  .kanbanCol {
    flex: 0 0 calc(100vw - 48px);
    min-height: 300px;
  }

  .kanbanColHead {
    padding: 12px 14px 10px;
  }

  .kanbanCard {
    padding: 14px;
  }

  .kanbanCardActions .btn {
    min-height: 40px;
  }

  .modalOverlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 94vh;
    animation: .28s cubic-bezier(.34, 1.1, .64, 1) slideUp;
  }

  @keyframes slideUp {
    from {
      opacity: .6;
      transform: translateY(100%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modalBody {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modalFieldFull {
    grid-column: span 1;
  }

  .modalHeader {
    padding: 16px 16px 0;
  }

  .modalBody, .modalFooter {
    padding: 12px 16px;
  }

  .tableWrap {
    border-radius: 8px;
  }

  table {
    min-width: 0;
  }

  .shell {
    gap: 14px;
    width: 100%;
    padding: 14px 16px 56px;
  }

  .heroTop {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 16px;
  }

  .heroLeftBrief {
    margin-top: 16px;
  }

  .heroBriefRow {
    grid-template-columns: 1fr;
  }

  .heroBriefPane + .heroBriefPane {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .heroDivider {
    padding: 0 18px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .heroStats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .heroStats div {
    padding: 10px;
  }

  .heroStats strong {
    font-size: 1.2rem;
  }

  .heroStats span {
    font-size: .75rem;
  }

  .quickNav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .quickNavCard {
    gap: 10px;
    padding: 12px;
  }

  .quickNavIcon {
    font-size: 1.2rem;
  }

  .quickNavCard strong {
    font-size: .88rem;
  }

  .quickNavCard p {
    font-size: .75rem;
  }

  .agentGrid {
    grid-template-columns: 1fr;
  }

  .approvalCardActions {
    flex-wrap: wrap;
  }

  .approvalCardActions .btn {
    flex: 1;
    min-width: 120px;
  }

  .sectionHead {
    margin-bottom: 8px;
  }

  h2 {
    font-size: 1rem;
  }

  .pageTitle {
    font-size: 1.3rem;
  }

  .pageSubtitle {
    font-size: .82rem;
  }
}

@media (max-width: 480px) {
  .kanbanCol {
    flex: 0 0 calc(100vw - 30px);
  }

  .heroStats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobileNavLink {
    font-size: .6rem;
  }

  th:nth-child(n+4), td:nth-child(n+4), .panel table th:nth-child(n+4), .panel table td:nth-child(n+4) {
    display: none;
  }
}

.blSwimLanes {
  margin: 30px 0;
}

.blLanes {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  display: grid;
}

.blLane {
  border-left: 4px solid var(--accent);
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.blLaneHeader {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.blLaneTitleRow {
  align-items: center;
  gap: 10px;
  display: flex;
}

.blLaneIcon {
  font-size: 1.8rem;
}

.blLaneName {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
}

.blLaneStatusRow {
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  display: flex;
}

.blLaneStatus {
  color: var(--muted);
}

.blLaneStats {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  display: grid;
}

.blLaneStat {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.blLaneStatLabel {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .75rem;
}

.blLaneStatValue {
  font-size: 1.5rem;
  font-weight: 700;
}

.blLaneRecent {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.blLaneRecentLabel {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  font-size: .75rem;
}

.blLaneRecentTask {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.4;
}

.blLaneLink {
  text-align: center;
  border: 1px solid;
  border-radius: 6px;
  padding: 8px;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.blLaneLink:hover {
  color: var(--bg);
  background: currentColor;
}

.costWidget {
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.costWidgetTitle {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.costWidgetTotal {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  text-align: center;
  border-radius: 8px;
  padding: 16px;
}

.costWidgetAmount {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 700;
}

.costWidgetSubLine {
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
  display: flex;
}

.costWidgetWeek, .costWidgetAllTime {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 400;
}

.costWidgetBreakdown {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.costWidgetRow {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  display: flex;
}

.costWidgetLabel {
  color: var(--text);
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  display: flex;
}

.costWidgetIcon {
  font-size: 1.2rem;
}

.costWidgetValue {
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
}

.costWidgetPct {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 400;
}

.costWidgetNote {
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .blLanes {
    grid-template-columns: 1fr;
  }

  .blLaneStats {
    grid-template-columns: repeat(4, 1fr);
  }

  .blLaneStat {
    text-align: center;
  }

  .blLaneStatValue {
    font-size: 1.3rem;
  }
}

.memNavBar {
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 12px;
  display: flex;
}

.memDateRow {
  align-items: center;
  gap: 16px;
  display: flex;
}

.memNavArrow {
  color: var(--accent);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.memNavArrow:hover {
  background: var(--panel-soft);
}

.memNavArrowDim {
  opacity: .35;
  pointer-events: none;
}

.memDateLabel {
  color: var(--text);
  text-align: center;
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
}

.memWeekStrip {
  justify-content: center;
  gap: 6px;
  display: flex;
}

.memWeekDay {
  color: var(--muted);
  border: 1px solid #0000;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 44px;
  padding: 6px 10px;
  text-decoration: none;
  transition: all .15s;
  display: flex;
  position: relative;
}

.memWeekDay:hover {
  background: var(--panel-soft);
  color: var(--text);
  border-color: var(--line);
}

.memWeekDayHas {
  color: var(--text);
}

.memWeekDaySel {
  background: var(--panel-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.memWeekDayName {
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
}

.memWeekDayNum {
  font-size: 1rem;
  font-weight: 700;
}

.memWeekDayDot {
  background: var(--accent);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  bottom: 4px;
}

.memViewTabs {
  border-top: 1px solid var(--line);
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
  display: flex;
}

.memViewTab {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}

.memViewTab:hover {
  background: var(--panel-soft);
  color: var(--text);
}

.memViewTabActive {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}

.memDigestBanner {
  border-left: 3px solid var(--warn);
  padding: 16px 20px;
}

.memDigestLabel {
  color: var(--warn);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-size: .8rem;
  font-weight: 700;
}

.memDigestContent {
  color: var(--text);
  font-size: .9rem;
}

.memAgentRow {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: start;
  gap: 18px;
  display: grid;
}

.memAgentCard {
  padding: 0;
  overflow: hidden;
}

.memAgentHeader {
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  display: flex;
}

.memAgentName {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.memAgentDate {
  color: var(--muted);
  font-size: .78rem;
}

.memAgentDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.memDotBdubs {
  background: #f44336;
  box-shadow: 0 0 8px #f44336;
}

.memDotElaine {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.memDotEllis {
  background: #a78bfa;
  box-shadow: 0 0 8px #a78bfa;
}

.memDotVera {
  background: #2dd4bf;
  box-shadow: 0 0 8px #2dd4bf;
}

.memDotAtlas {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.memSections {
  flex-direction: column;
  display: flex;
}

.memSection {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.memSection:last-child {
  border-bottom: none;
}

.memSectionTitle {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
}

.memAgentElaine .memSectionTitle {
  color: var(--accent);
  opacity: .85;
}

.memAgentEllis .memSectionTitle {
  color: #a78bfa;
  opacity: .85;
}

.memAgentVera .memSectionTitle {
  color: #2dd4bf;
  opacity: .85;
}

.memAgentAtlas .memSectionTitle {
  color: #fbbf24;
  opacity: .85;
}

.memSectionBody {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.7;
}

.memSectionBody p {
  margin: 0 0 6px;
}

.memSectionBody h4 {
  color: var(--text);
  margin: 12px 0 4px;
  font-size: .88rem;
  font-weight: 700;
}

.memSectionBody h5 {
  color: var(--muted);
  margin: 8px 0 4px;
  font-size: .83rem;
  font-weight: 600;
}

.memSectionBody ul, .memSectionBody ol {
  margin: 4px 0 8px;
  padding-left: 18px;
}

.memSectionBody li {
  margin-bottom: 3px;
}

.memSectionBody code {
  color: var(--accent);
  background: #ffffff0f;
  border-radius: 4px;
  padding: 1px 5px;
  font-family: monospace;
  font-size: .82rem;
}

.memSectionBody pre {
  border: 1px solid var(--line);
  background: #00000059;
  border-radius: 8px;
  margin: 8px 0;
  padding: 12px;
  overflow-x: auto;
}

.memSectionBody pre code {
  color: var(--text);
  background: none;
  padding: 0;
}

.memSectionBody strong {
  color: var(--text);
  font-weight: 700;
}

.memSectionBody em {
  color: var(--muted);
  font-style: italic;
}

.memSectionBody a {
  color: var(--accent);
  text-decoration: underline;
}

.memSectionBody del {
  color: var(--muted);
  text-decoration: line-through;
}

.memSectionBody hr.jHr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 10px 0;
}

.memSectionBody .jGap {
  height: 6px;
}

.memSectionBody .jEmpty {
  color: var(--muted);
  font-style: italic;
}

.memSectionBody .jTableRow {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
  padding: 3px 0;
  font-size: .82rem;
  display: flex;
}

.memSectionBody .jTableRow span {
  flex: 1;
  min-width: 60px;
}

.memSectionBody li.jCheck {
  margin-left: -14px;
  list-style: none;
}

.memSectionBody li.jChecked {
  color: var(--accent);
}

.memSectionBody li.jUnchecked {
  color: var(--muted);
}

.memEmpty {
  color: var(--muted);
  padding: 24px 18px;
  font-size: .88rem;
  font-style: italic;
}

.memSystemPanel {
  padding: 18px 20px;
}

.memSystemTitle {
  color: var(--text);
  margin: 0 0 14px;
  font-size: .95rem;
  font-weight: 700;
}

.memTimeline {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.memTimelineItem {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  font-size: .83rem;
  display: flex;
}

.memTimelineIcon {
  text-align: center;
  flex-shrink: 0;
  width: 20px;
  font-size: .9rem;
}

.memTimelineTime {
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 46px;
}

.memTimelineType {
  flex-shrink: 0;
}

.memTimelineDesc {
  color: var(--text);
  flex: 1;
}

.memTimelineComp {
  color: var(--muted);
  flex-shrink: 0;
  font-size: .75rem;
}

.memWeekGrid {
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  display: grid;
}

.memWeekCard {
  color: var(--text);
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
  padding: 12px;
  text-decoration: none;
  transition: border-color .15s, transform .1s;
  display: flex;
}

.memWeekCard:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.memWeekCardToday {
  border-color: var(--accent) !important;
}

.memWeekCardSel {
  border-color: var(--warn) !important;
}

.memWeekCardHeader {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  display: flex;
}

.memWeekCardDay {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}

.memWeekCardDate {
  flex: 1;
  font-size: .9rem;
  font-weight: 600;
}

.memWeekCardTodayBadge {
  background: var(--accent);
  color: #000;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .65rem;
  font-weight: 700;
}

.memWeekCardEmpty {
  color: var(--muted);
  text-align: center;
  margin: auto 0;
  font-size: .82rem;
  font-style: italic;
}

.memWeekCardBody {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.memWeekCardAgent {
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  display: flex;
}

.memWeekCardAgentName {
  color: var(--text);
}

.memWeekCardCount {
  color: var(--muted);
  margin-left: auto;
  font-size: .72rem;
}

.memWeekCardPreview {
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 4px 0 0;
  font-size: .75rem;
  font-style: italic;
  display: -webkit-box;
  overflow: hidden;
}

.memLongTermGrid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: start;
  gap: 18px;
  display: grid;
}

@media (max-width: 900px) {
  .memAgentRow, .memLongTermGrid {
    grid-template-columns: 1fr;
  }

  .memWeekGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .memWeekGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .memWeekStrip {
    gap: 3px;
  }

  .memWeekDay {
    min-width: 36px;
    padding: 4px 6px;
  }
}

.drawerOverlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 200;
  background: #050b1cb3;
  justify-content: flex-end;
  animation: .15s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.drawer {
  background: var(--panel);
  border-left: 1px solid var(--line);
  flex-direction: column;
  width: min(900px, 95vw);
  height: 100vh;
  animation: .2s slideIn;
  display: flex;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawerHeader {
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: var(--panel-soft);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px 14px;
  display: flex;
}

.drawerHeaderLeft {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.drawerTaskId {
  color: var(--muted);
  font-size: .75rem;
}

.drawerTitle {
  color: var(--text);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.drawerAgentBadge {
  border: 1px solid;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.drawerClose {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  flex-shrink: 0;
  padding: 4px 8px;
  font-size: 1.1rem;
}

.drawerClose:hover {
  background: var(--panel-soft);
  color: var(--text);
}

.drawerBody {
  flex: 1;
  grid-template-columns: 340px 1fr;
  display: grid;
  overflow: hidden;
}

.drawerInfo {
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.drawerField {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.drawerFieldRow {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

.drawerLabel {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.drawerDesc {
  color: var(--text);
  white-space: pre-wrap;
  max-height: 120px;
  font-size: .88rem;
  line-height: 1.6;
  overflow-y: auto;
}

.drawerResult {
  color: var(--text);
  white-space: pre-wrap;
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 6px;
  max-height: 160px;
  padding: 8px;
  font-size: .85rem;
  line-height: 1.6;
  overflow-y: auto;
}

.drawerApproval {
  background: #ffd47912;
  border: 1px solid #ffd47955;
  border-radius: 10px;
  padding: 12px;
}

.drawerApprovalTitle {
  color: var(--warn);
  margin: 0 0 8px;
  font-size: .85rem;
  font-weight: 700;
}

.drawerActions {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  display: flex;
}

.drawerThread {
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.drawerThreadHeader {
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.drawerThreadTitle {
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
}

.drawerThreadHint {
  color: var(--muted);
  font-size: .78rem;
}

.drawerMessages {
  flex-direction: column;
  flex: 1;
  gap: 14px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.drawerMessagesEmpty {
  color: var(--muted);
  text-align: center;
  margin: auto;
  padding: 20px;
  font-size: .88rem;
  line-height: 1.6;
}

.threadMsg {
  flex-direction: column;
  gap: 4px;
  max-width: 86%;
  display: flex;
}

.threadMsgUser {
  align-self: flex-end;
}

.threadMsgAgent {
  align-self: flex-start;
}

.threadMsgMeta {
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  display: flex;
}

.threadMsgAuthor {
  font-weight: 700;
}

.threadMsgTime {
  color: var(--muted);
}

.threadMsgPending {
  color: var(--muted);
  font-size: .7rem;
}

.threadMsgSent {
  color: var(--accent);
  font-size: .7rem;
}

.threadMsgUser .threadMsgMeta {
  justify-content: flex-end;
}

.threadMsgBubble {
  border: 1px solid;
  border-radius: 12px;
  padding: 10px 14px;
  line-height: 1.6;
}

.threadMsgUser .threadMsgBubble {
  background: #4cd7a514;
  border-radius: 12px 12px 2px;
}

.threadMsgAgent .threadMsgBubble {
  background: #ffffff0a;
  border-radius: 12px 12px 12px 2px;
}

.threadMsgContent {
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-size: .88rem;
}

.drawerInputArea {
  border-top: 1px solid var(--line);
  background: var(--panel-soft);
  flex-shrink: 0;
  padding: 12px 16px;
}

.drawerSendError {
  color: var(--danger);
  margin-bottom: 6px;
  font-size: .8rem;
}

.drawerInputRow {
  align-items: flex-end;
  gap: 8px;
  display: flex;
}

.drawerInput {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  resize: none;
  border-radius: 8px;
  flex: 1;
  padding: 8px 12px;
  font-family: inherit;
  font-size: .88rem;
  line-height: 1.5;
}

.drawerInput:focus {
  border-color: var(--accent);
  outline: none;
}

.drawerInput::placeholder {
  color: var(--muted);
}

.drawerSendBtn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 16px;
}

.drawerInputHint {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: .72rem;
}

@media (max-width: 768px) {
  .drawer {
    width: 100vw;
  }

  .drawerBody {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
  }

  .drawerInfo {
    border-right: none;
    border-bottom: 1px solid var(--line);
    max-height: 45vh;
  }
}

.livePanel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border-radius: 14px;
  transition: all .2s;
  overflow: hidden;
}

.livePanelCollapsed .liveFeed {
  display: none;
}

.livePanelHeader {
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  display: flex;
}

.livePanelHeaderLeft {
  flex: 1;
  align-items: center;
  gap: 8px;
  display: flex;
}

.liveDot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 2s infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.livePanelTitle {
  color: var(--text);
  font-size: .88rem;
  font-weight: 700;
}

.liveStaleness {
  font-size: .78rem;
}

.liveAgentPills {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.liveAgentPill {
  color: var(--text);
  border: 1px solid;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  font-size: .75rem;
  display: flex;
}

.liveAgentPill code {
  color: var(--muted);
  font-size: .7rem;
}

.liveAgentPillDot {
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.livePanelToggle {
  padding: 3px 10px;
  font-size: .78rem;
}

.liveFeed {
  flex-direction: column;
  gap: 1px;
  max-height: 240px;
  display: flex;
  overflow-y: auto;
}

.liveFeedEmpty {
  color: var(--muted);
  text-align: center;
  padding: 16px;
  font-size: .85rem;
  font-style: italic;
}

.liveFeedRow {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  font-size: .8rem;
  transition: background .1s;
  display: flex;
}

.liveFeedRow:hover {
  background: #ffffff08;
}

.liveFeedRow:first-child {
  animation: .15s slideDown;
}

.liveFeedIcon {
  text-align: center;
  flex-shrink: 0;
  width: 18px;
  font-size: .85rem;
}

.liveFeedTime {
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 62px;
}

.liveFeedAgent {
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 600;
}

.liveFeedType {
  flex-shrink: 0;
}

.liveFeedDesc {
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
}

.liveFeedTask {
  color: var(--muted);
  flex-shrink: 0;
  font-size: .72rem;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/