/* components/dashboard/DashboardPage.module.css */
.DashboardPage_shell {
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}
.DashboardPage_nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) {
  .DashboardPage_nav {
    padding: 0 32px;
  }
}
.DashboardPage_avatar {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.DashboardPage_avatarImg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.DashboardPage_avatarInitials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.DashboardPage_wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
}
.DashboardPage_wordmarkText {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.DashboardPage_axolotlIcon {
  font-size: 1.25rem;
}
.DashboardPage_agentIconSmall {
  width: 28px;
  height: 28px;
  border-radius: 10%;
  object-fit: cover;
}
.DashboardPage_navDate {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.DashboardPage_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .DashboardPage_grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 16px;
    padding: 28px;
  }
  .DashboardPage_card {
    border-radius: 20px;
    padding: 20px 24px;
  }
}
.DashboardPage_card {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
  animation: DashboardPage_fadeSlideUp 280ms ease-out both;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.DashboardPage_card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.DashboardPage_cardFull {
  grid-column: 1 / -1;
}
.DashboardPage_cardHalf {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .DashboardPage_cardHalf {
    grid-column: span 1;
  }
}
.DashboardPage_cardBrief {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
}
.DashboardPage_assistantPrompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  background:
    linear-gradient(
      120deg,
      color-mix(in srgb, var(--color-accent) 12%, var(--color-surface)),
      var(--color-surface) 48%);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, var(--color-border));
  border-radius: 16px;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--color-accent) 9%, transparent);
  animation: DashboardPage_assistantPromptEnter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes DashboardPage_assistantPromptEnter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.DashboardPage_assistantPromptContent {
  min-width: 0;
}
.DashboardPage_assistantPromptKicker {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 5px;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.DashboardPage_assistantPromptKicker span {
  font-size: 0.9rem;
  line-height: 1;
}
.DashboardPage_assistantPromptTitle {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-base);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.DashboardPage_assistantPromptCopy {
  max-width: 640px;
  margin: 5px 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}
.DashboardPage_assistantPromptMeta,
.DashboardPage_assistantPromptTrust {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.45;
}
.DashboardPage_assistantPromptActions {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: end;
  justify-content: end;
  gap: 8px;
  min-width: 190px;
}
.DashboardPage_assistantPromptTrust {
  grid-column: 1 / -1;
  max-width: 240px;
  margin: 0;
  text-align: right;
}
.DashboardPage_showDetailsLink {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
}
.DashboardPage_showDetailsLink:hover {
  opacity: 0.8;
}
.DashboardPage_showDetailsLink:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}
.DashboardPage_assistantPrimaryBtn,
.DashboardPage_assistantSecondaryBtn {
  cursor: pointer;
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 750;
  line-height: 1.2;
  padding: 10px 14px;
  border-radius: 10px;
  transition:
    opacity 0.15s,
    transform 0.15s,
    background 0.15s;
}
.DashboardPage_assistantPrimaryBtn {
  background: var(--color-accent);
  border: none;
  color: white;
}
.DashboardPage_assistantSecondaryBtn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--color-accent) 42%, var(--color-border));
  color: var(--color-accent);
}
.DashboardPage_assistantPrimaryBtn:hover,
.DashboardPage_assistantSecondaryBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.DashboardPage_assistantPrimaryBtn:focus-visible,
.DashboardPage_assistantSecondaryBtn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}
.DashboardPage_assistantPrimaryBtn:disabled,
.DashboardPage_assistantSecondaryBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.DashboardPage_assistantPrimaryBtn:disabled:hover,
.DashboardPage_assistantSecondaryBtn:disabled:hover {
  transform: none;
}
.DashboardPage_studyMeSpinner {
  animation: DashboardPage_studyMeSpin .75s linear infinite;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  height: 13px;
  margin-right: 7px;
  vertical-align: -2px;
  width: 13px;
}
@keyframes DashboardPage_studyMeSpin {
  to {
    transform: rotate(360deg);
  }
}
.DashboardPage_pipelineStatus {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  font: inherit;
  gap: 6px;
  text-align: left;
  width: 100%;
}
.DashboardPage_pipelineStatus:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 42%, transparent);
  outline-offset: 3px;
}
.DashboardPage_pipelineText {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin: 0;
}
.DashboardPage_pipelineMeta {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  margin: 0;
}
.DashboardPage_pipelineRunningRow,
.DashboardPage_pipelineStartRow {
  align-items: center;
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
  justify-self: end;
}
.DashboardPage_pipelineStatusDot {
  background: var(--color-text-muted);
  border: 3px solid var(--color-surface);
  border-radius: 50%;
  display: block;
  flex: 0 0 13px;
  height: 13px;
  margin: 2px;
  width: 13px;
}
.DashboardPage_pipelinePulse {
  animation: DashboardPage_pipelinePulse 1.2s ease-in-out infinite;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--color-accent) 18%, transparent), 0 0 14px color-mix(in srgb, var(--color-accent) 46%, transparent);
}
.DashboardPage_pipelineComplete {
  background: #2b9d61;
}
.DashboardPage_pipelineFailed {
  background: #d94c44;
}
.DashboardPage_pipelineRunBtn {
  background: var(--color-accent);
  border: none;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: var(--font-size-xs);
  font-weight: 800;
  padding: 5px 12px;
  transition: opacity 0.15s;
}
.DashboardPage_pipelineRunBtn:hover {
  opacity: 0.85;
}
@keyframes DashboardPage_pipelinePulse {
  50% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--color-accent) 8%, transparent), 0 0 17px color-mix(in srgb, var(--color-accent) 56%, transparent);
    transform: scale(.88);
  }
}
@media (max-width: 600px) {
  .DashboardPage_assistantPrompt {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .DashboardPage_assistantPromptActions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    min-width: 0;
  }
  .DashboardPage_assistantPrimaryBtn,
  .DashboardPage_assistantSecondaryBtn {
    width: 100%;
  }
  .DashboardPage_assistantPromptTrust {
    max-width: none;
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .DashboardPage_assistantPrompt {
    animation: none;
  }
}
.DashboardPage_outcomeToday {
  background: var(--color-accent-light);
  border-color: color-mix(in srgb, var(--color-accent) 36%, var(--color-border));
}
.DashboardPage_outcomeToday .DashboardPage_eventTitle,
.DashboardPage_outcomeToday .DashboardPage_taskTitle {
  font-weight: 600;
}
.DashboardPage_outcomeMetric {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0;
}
.DashboardPage_outcomeDescription {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
  margin: -4px 0 2px;
}
.DashboardPage_outcomeFooter {
  align-items: center;
  color: var(--color-text-muted);
  display: flex;
  font-size: var(--font-size-xs);
  gap: 10px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
}
.DashboardPage_outcomeFooter b {
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 768px) {
  .DashboardPage_outcomeToday {
    grid-row: span 2;
    min-height: 340px;
  }
  .DashboardPage_outcomeReview,
  .DashboardPage_outcomePlan {
    min-height: 160px;
  }
}
.DashboardPage_talkBar {
  align-items: center;
  background: var(--color-accent);
  border-radius: 999px;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 804px;
  padding: 4px 18px;
  width: calc(100% - 32px);
}
.DashboardPage_talkBar button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font: inherit;
  min-height: 44px;
  padding: 8px 0;
}
.DashboardPage_talkBar button {
  font-size: var(--font-size-sm);
  font-weight: 800;
}
.DashboardPage_talkBar button:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .DashboardPage_talkBar {
    margin-bottom: 84px;
  }
}
.DashboardPage_cardHeader {
  display: flex;
  align-items: center;
  gap: 8px;
}
.DashboardPage_cardTitle {
  font-weight: 700;
  font-size: var(--font-size-base);
  flex: 1;
}
.DashboardPage_cardArrow {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  transition: transform 150ms ease;
}
.DashboardPage_card:hover .DashboardPage_cardArrow {
  transform: translateX(3px);
}
.DashboardPage_briefText {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.DashboardPage_badge {
  background: var(--color-accent);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.DashboardPage_pill {
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.DashboardPage_taskRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.DashboardPage_checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}
.DashboardPage_taskTitle {
  font-size: var(--font-size-sm);
  flex: 1;
}
.DashboardPage_priorityDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.DashboardPage_priorityAsap {
  background: var(--priority-asap);
}
.DashboardPage_priorityHigh {
  background: var(--priority-high);
}
.DashboardPage_priorityMed {
  background: var(--priority-medium);
}
.DashboardPage_priorityLow {
  background: var(--priority-low);
}
.DashboardPage_eventRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.DashboardPage_eventDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.DashboardPage_eventTitle {
  font-size: var(--font-size-sm);
  flex: 1;
}
.DashboardPage_eventTime {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.DashboardPage_jobRow {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.DashboardPage_companyInitial {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.DashboardPage_jobInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.DashboardPage_jobRole {
  font-weight: 700;
  font-size: var(--font-size-sm);
}
.DashboardPage_jobCompany {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.DashboardPage_jobReason {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-style: italic;
}
.DashboardPage_routeRow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.DashboardPage_routeOrigin,
.DashboardPage_routeDest {
  font-weight: 600;
  font-size: var(--font-size-sm);
}
.DashboardPage_routeArrow {
  color: var(--color-text-muted);
}
.DashboardPage_routeMeta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-left: auto;
}
.DashboardPage_compareLink {
  font-size: var(--font-size-xs);
  color: var(--color-accent);
  font-weight: 600;
  margin-top: auto;
}
.DashboardPage_skeleton {
  height: 48px;
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      var(--color-border) 0%,
      var(--color-bg) 50%,
      var(--color-border) 100%);
  background-size: 200% 100%;
  animation: DashboardPage_shimmer 1.5s infinite;
}
@keyframes DashboardPage_shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.DashboardPage_emptyText {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}
.DashboardPage_contactList {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.DashboardPage_contactRow {
  display: flex;
  align-items: center;
  gap: 10;
  padding: 8px 0;
  border-top: 1px solid var(--color-border);
}
.DashboardPage_contactRow:first-child {
  border-top: none;
}
@media (min-width: 1100px) {
  .DashboardPage_contactList {
    flex-direction: row;
  }
  .DashboardPage_contactRow {
    flex: 1 1 0;
    min-width: 0;
    padding: 4px 12px;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }
  .DashboardPage_contactRow:first-child {
    border-left: none;
    padding-left: 0;
  }
}

/* components/app-header.module.css */
.app_header_header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 50;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.app_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 100%;
}
.app_header_avatarLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.app_header_avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-light);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-accent);
  overflow: hidden;
  transition: border-color 150ms ease;
}
.app_header_avatarLink:hover .app_header_avatar {
  border-color: var(--color-accent);
}
.app_header_avatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.app_header_logoLink {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.app_header_logoImg {
  border-radius: 10%;
}
.app_header_wordmark {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.app_header_wordmarkSpinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  border-top-color: transparent;
  animation: app_header_wordmarkSpin 0.6s linear infinite;
}
@keyframes app_header_wordmarkSpin {
  to {
    transform: rotate(360deg);
  }
}
.app_header_left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.app_header_backLink {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
}
.app_header_backLink:hover {
  opacity: 0.75;
}
.app_header_date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .app_header_inner {
    padding: 0 12px;
  }
  .app_header_date {
    display: none;
  }
  .app_header_wordmark {
    font-size: 1rem;
  }
}

/* components/routes/RouteCard.module.css */
.RouteCard_card {
  background: var(--color-surface);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.RouteCard_card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.RouteCard_cardBody {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.RouteCard_header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
@media (min-width: 768px) {
  .RouteCard_header {
    flex-direction: row;
    align-items: center;
  }
}
.RouteCard_nameGroup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.RouteCard_modeIcons {
  display: flex;
}
.RouteCard_modeIcons > * + * {
  margin-left: -8px;
}
.RouteCard_modeIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-surface);
  color: var(--color-accent);
}
.RouteCard_routeName {
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: 1;
  margin: 0;
  color: var(--color-text);
}
.RouteCard_routeSubtitle {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 4px 0 0;
}
.RouteCard_stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.RouteCard_dateBadge {
  text-align: right;
  border-radius: var(--radius-md);
  border: 2px solid #f87171;
  background: color-mix(in srgb, #f87171 12%, var(--color-bg));
  padding: 4px 8px;
}
.RouteCard_dateBadgeLabel {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f87171;
  margin: 0;
}
.RouteCard_dateBadgeValue {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: #f87171;
  margin: 0;
}
.RouteCard_stat {
  text-align: right;
}
.RouteCard_statLabel {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0;
}
.RouteCard_statValue {
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.RouteCard_priceValue {
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--font-size-xl);
  line-height: 1;
  margin: 0;
}
.RouteCard_priceBreakdown {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin: 2px 0 0;
}
.RouteCard_collapseGrid {
  display: grid;
  transition: grid-template-rows 300ms ease-in-out;
}
.RouteCard_collapseGrid.RouteCard_closed {
  grid-template-rows: 0fr;
}
.RouteCard_collapseGrid.RouteCard_open {
  grid-template-rows: 1fr;
}
.RouteCard_collapseInner {
  overflow: hidden;
}
.RouteCard_collapseContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.RouteCard_barRow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.RouteCard_bar {
  height: 6px;
  flex-grow: 1;
  border-radius: 999px;
  background: var(--color-bg);
  overflow: hidden;
  display: flex;
}
.RouteCard_barSegmentPrimary {
  height: 100%;
  background: var(--color-accent);
}
.RouteCard_barSegmentTransit {
  height: 100%;
  background: var(--color-accent);
  opacity: 0.4;
}
.RouteCard_workBadge {
  padding: 4px 10px;
  border-radius: var(--radius-md);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.RouteCard_workBadgePositive {
  background: color-mix(in srgb, #34d399 15%, var(--color-bg));
  color: #34d399;
}
.RouteCard_workBadgeNeutral {
  background: var(--color-bg);
  color: var(--color-text-muted);
}
.RouteCard_calendarNote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  background: color-mix(in srgb, #3b82f6 12%, var(--color-bg));
  padding: 8px 12px;
  font-size: var(--font-size-xs);
  color: #3b82f6;
}
.RouteCard_legs {
  display: flex;
  flex-direction: column;
}
.RouteCard_legRow {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.RouteCard_legIconCol {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.RouteCard_legIcon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.RouteCard_legIconDefault {
  background: var(--color-bg);
  color: var(--color-text);
  opacity: 0.7;
}
.RouteCard_legIconLayover {
  background: color-mix(in srgb, #fbbf24 15%, var(--color-bg));
  color: #fbbf24;
}
.RouteCard_legConnector {
  width: 1px;
  flex: 1;
  margin: 4px 0;
}
.RouteCard_legConnectorDefault {
  background: var(--color-border);
  opacity: 0.4;
}
.RouteCard_legConnectorLayover {
  background: #fbbf24;
  opacity: 0.5;
}
.RouteCard_legContent {
  flex: 1;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.RouteCard_legContentLast {
  margin-bottom: 0;
}
.RouteCard_legContentDefault {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  opacity: 0.9;
}
.RouteCard_legContentLayover {
  background: color-mix(in srgb, #fbbf24 10%, var(--color-bg));
  border: 1px solid color-mix(in srgb, #fbbf24 30%, var(--color-border));
  opacity: 0.9;
}
.RouteCard_legHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.RouteCard_legLabel {
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}
.RouteCard_legLabelLayover {
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #fbbf24;
}
.RouteCard_legDuration {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.RouteCard_legDurationLayover {
  font-size: 0.6875rem;
  color: #fbbf24;
  white-space: nowrap;
  flex-shrink: 0;
}
.RouteCard_legTimes {
  margin: 4px 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.RouteCard_legStops {
  margin: 4px 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.RouteCard_legMeta {
  margin: 2px 0 0;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}
.RouteCard_legLinks {
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.RouteCard_legLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  color: var(--color-accent);
}
.RouteCard_legLink:hover {
  text-decoration: underline;
}
.RouteCard_legAgencyLinks {
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.RouteCard_legAgencyLink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}
.RouteCard_legAgencyLink:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* components/routes/RouteComparisonCard.module.css */
.RouteComparisonCard_cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}
.RouteComparisonCard_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 16px 0;
}

/* components/calendar/CalendarSummaryCard.module.css */
.CalendarSummaryCard_card {
  margin: 16px 0;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.CalendarSummaryCard_calHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.CalendarSummaryCard_dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.CalendarSummaryCard_calName {
  font-weight: 700;
  font-size: var(--font-size-sm);
  flex: 1;
}
.CalendarSummaryCard_count {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background: var(--color-border);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.CalendarSummaryCard_events {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.CalendarSummaryCard_event {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  border-left-width: 3px;
  padding: 8px 12px;
  background: var(--color-bg);
}
.CalendarSummaryCard_eventTitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin: 0;
}
.CalendarSummaryCard_eventTime {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}
.CalendarSummaryCard_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 16px 0;
}

/* components/routes/TransportHubsCard.module.css */
.TransportHubsCard_card {
  margin: 16px 0;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.TransportHubsCard_header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.TransportHubsCard_title {
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin: 0;
}
.TransportHubsCard_subtitle {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}
.TransportHubsCard_body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.TransportHubsCard_section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.TransportHubsCard_sectionHeader {
  display: flex;
  align-items: center;
  gap: 6px;
}
.TransportHubsCard_sectionIcon {
  color: var(--color-accent);
}
.TransportHubsCard_sectionLabel {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.TransportHubsCard_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.TransportHubsCard_hub {
  background: var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
}
.TransportHubsCard_hubName {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.TransportHubsCard_hubCode {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-accent);
}
.TransportHubsCard_hubCity {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}
.TransportHubsCard_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 16px 0;
}

/* components/chat/WebSearchCard.module.css */
.WebSearchCard_card {
  margin: 16px 0;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.WebSearchCard_header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.WebSearchCard_searchIcon {
  color: var(--color-text-muted);
}
.WebSearchCard_title {
  font-weight: 700;
  font-size: var(--font-size-sm);
  flex: 1;
  margin: 0;
}
.WebSearchCard_count {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.WebSearchCard_queryRow {
  padding: 6px 16px;
  background: var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.WebSearchCard_query {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0;
}
.WebSearchCard_results {
  display: flex;
  flex-direction: column;
  divide-y: 1px solid var(--color-border);
}
.WebSearchCard_result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background 150ms;
}
.WebSearchCard_result:hover {
  background: var(--color-border);
}
.WebSearchCard_result + .WebSearchCard_result {
  border-top: 1px solid var(--color-border);
}
.WebSearchCard_externalIcon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.WebSearchCard_result:hover .WebSearchCard_externalIcon {
  opacity: 1;
}
.WebSearchCard_resultBody {
  min-width: 0;
}
.WebSearchCard_resultTitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  transition: color 150ms;
}
.WebSearchCard_result:hover .WebSearchCard_resultTitle {
  color: var(--color-accent);
}
.WebSearchCard_resultDomain {
  font-size: var(--font-size-xs);
  color: var(--color-accent);
  opacity: 0.7;
  margin: 2px 0 0;
}
.WebSearchCard_resultSnippet {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 4px 0 0;
  line-height: 1.5;
}
.WebSearchCard_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 12px 0;
}

/* components/chat/CollapsibleToolCard.module.css */
.CollapsibleToolCard_card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
  margin: 8px 0;
}
.CollapsibleToolCard_header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  transition: background 150ms;
}
.CollapsibleToolCard_header:hover {
  background: color-mix(in srgb, var(--color-border) 30%, transparent);
}
.CollapsibleToolCard_icon {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.CollapsibleToolCard_title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
}
.CollapsibleToolCard_subtitle {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.CollapsibleToolCard_chevron {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 150ms ease;
}
.CollapsibleToolCard_chevronOpen {
  transform: rotate(90deg);
}
.CollapsibleToolCard_body {
  border-top: 1px solid var(--color-border);
}

/* components/tasks/TaskCard.module.css */
.TaskCard_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
}
.TaskCard_row {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.TaskCard_left {
  flex: 1;
  min-width: 0;
}
.TaskCard_topLine {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.TaskCard_sourceBadge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.TaskCard_source_google {
  background: color-mix(in srgb, #34d399 15%, var(--color-bg));
  color: #34d399;
}
.TaskCard_identifier {
  font-size: 10px;
  font-family: monospace;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.TaskCard_title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.TaskCard_bottomLine {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.TaskCard_project {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.TaskCard_chip {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.TaskCard_scheduled {
  font-size: 10px;
  color: var(--color-text-muted);
}
.TaskCard_right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.TaskCard_status {
  display: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-border);
  color: var(--color-text-muted);
}
@media (min-width: 640px) {
  .TaskCard_status {
    display: inline;
  }
}
.TaskCard_priorityBadge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.TaskCard_priority_ASAP {
  background: color-mix(in srgb, var(--priority-asap) 15%, var(--color-bg));
  color: var(--priority-asap);
}
.TaskCard_priority_HIGH {
  background: color-mix(in srgb, var(--priority-high) 15%, var(--color-bg));
  color: var(--priority-high);
}
.TaskCard_priority_MEDIUM {
  background: color-mix(in srgb, var(--priority-medium) 15%, var(--color-bg));
  color: var(--priority-medium);
}
.TaskCard_priority_LOW {
  background: color-mix(in srgb, var(--priority-low) 15%, var(--color-bg));
  color: var(--priority-low);
}
.TaskCard_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 16px 0;
}

/* components/calendar/CalendarEventProposalCard.module.css */
.CalendarEventProposalCard_card {
  margin: 12px 0;
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, #3b82f6 30%, var(--color-border));
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.CalendarEventProposalCard_titleRow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.CalendarEventProposalCard_calIcon {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 1px;
}
.CalendarEventProposalCard_eventTitle {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
}
.CalendarEventProposalCard_timeRange {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0;
}
.CalendarEventProposalCard_locationRow {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.CalendarEventProposalCard_pinIcon {
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-top: 1px;
}
.CalendarEventProposalCard_location {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.CalendarEventProposalCard_error {
  font-size: var(--font-size-xs);
  color: var(--color-error, #dc2626);
  margin: 0;
}
.CalendarEventProposalCard_actions {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.CalendarEventProposalCard_acceptBtn {
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--color-accent);
  color: #fff;
  transition: background 200ms;
}
.CalendarEventProposalCard_acceptBtn:disabled {
  opacity: 0.5;
}
.CalendarEventProposalCard_acceptBtn:not(:disabled):hover {
  background: var(--color-accent-dark);
}
.CalendarEventProposalCard_dismissBtn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  transition: background 150ms;
}
.CalendarEventProposalCard_dismissBtn:hover {
  background: var(--color-border);
}
.CalendarEventProposalCard_accepted {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--color-success, #16a34a);
  margin: 12px 0;
}

/* components/chat/ComposerPlusMenu.module.css */
.ComposerPlusMenu_trigger {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  padding: 0;
}
.ComposerPlusMenu_trigger:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.ComposerPlusMenu_menu {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ComposerPlusMenu_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: background 150ms ease;
}
.ComposerPlusMenu_item:hover {
  background: var(--color-accent-light);
}
.ComposerPlusMenu_itemIcon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.ComposerPlusMenu_itemLabel {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  display: block;
}
.ComposerPlusMenu_itemDesc {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 1px 0 0;
}

/* components/chat/CalendarEventPickerSheet.module.css */
.CalendarEventPickerSheet_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: CalendarEventPickerSheet_fadeIn 150ms ease-out both;
}
@keyframes CalendarEventPickerSheet_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.CalendarEventPickerSheet_modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  max-height: 72vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: CalendarEventPickerSheet_slideUp 200ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes CalendarEventPickerSheet_slideUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.CalendarEventPickerSheet_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.CalendarEventPickerSheet_title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}
.CalendarEventPickerSheet_closeBtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  padding: 0;
}
.CalendarEventPickerSheet_closeBtn:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.CalendarEventPickerSheet_searchRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.CalendarEventPickerSheet_searchIcon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.CalendarEventPickerSheet_searchInput {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  outline: none;
}
.CalendarEventPickerSheet_searchInput::placeholder {
  color: var(--color-text-muted);
}
.CalendarEventPickerSheet_list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.CalendarEventPickerSheet_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.CalendarEventPickerSheet_groupLabel {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin: 0 0 4px;
}
.CalendarEventPickerSheet_eventRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 150ms, border-color 150ms;
}
.CalendarEventPickerSheet_eventRow:hover {
  background: var(--color-bg);
}
.CalendarEventPickerSheet_eventRowChecked {
  background: var(--color-accent-light);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.CalendarEventPickerSheet_checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition:
    background 150ms,
    border-color 150ms,
    color 150ms;
}
.CalendarEventPickerSheet_checkboxChecked {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.CalendarEventPickerSheet_calDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.CalendarEventPickerSheet_eventBody {
  flex: 1;
  min-width: 0;
}
.CalendarEventPickerSheet_eventTitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.CalendarEventPickerSheet_eventMeta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}
.CalendarEventPickerSheet_skeleton {
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-border);
  animation: CalendarEventPickerSheet_pulse 1.4s ease-in-out infinite;
}
@keyframes CalendarEventPickerSheet_pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.CalendarEventPickerSheet_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  padding: 32px 0;
  margin: 0;
}
.CalendarEventPickerSheet_footer {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}
.CalendarEventPickerSheet_confirmBtn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-lg);
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.CalendarEventPickerSheet_confirmBtn:hover:not(:disabled) {
  background: var(--color-accent-dark);
  transform: scale(1.01);
}
.CalendarEventPickerSheet_confirmBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* components/chat/SavedAddressPickerSheet.module.css */
.SavedAddressPickerSheet_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: SavedAddressPickerSheet_fadeIn 150ms ease-out both;
}
@keyframes SavedAddressPickerSheet_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.SavedAddressPickerSheet_modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  max-height: 72vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: SavedAddressPickerSheet_slideUp 200ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes SavedAddressPickerSheet_slideUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.SavedAddressPickerSheet_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.SavedAddressPickerSheet_title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}
.SavedAddressPickerSheet_closeBtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  padding: 0;
}
.SavedAddressPickerSheet_closeBtn:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.SavedAddressPickerSheet_searchRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.SavedAddressPickerSheet_searchIcon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.SavedAddressPickerSheet_searchInput {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  outline: none;
}
.SavedAddressPickerSheet_searchInput::placeholder {
  color: var(--color-text-muted);
}
.SavedAddressPickerSheet_list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.SavedAddressPickerSheet_addrRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 150ms, border-color 150ms;
}
.SavedAddressPickerSheet_addrRow:hover {
  background: var(--color-bg);
}
.SavedAddressPickerSheet_addrRowChecked {
  background: var(--color-accent-light);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.SavedAddressPickerSheet_checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition:
    background 150ms,
    border-color 150ms,
    color 150ms;
}
.SavedAddressPickerSheet_checkboxChecked {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.SavedAddressPickerSheet_iconWrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 150ms, color 150ms;
}
.SavedAddressPickerSheet_iconWrapChecked {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.SavedAddressPickerSheet_addrBody {
  flex: 1;
  min-width: 0;
}
.SavedAddressPickerSheet_addrLabel {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.SavedAddressPickerSheet_addrText {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.SavedAddressPickerSheet_skeleton {
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-border);
  animation: SavedAddressPickerSheet_pulse 1.4s ease-in-out infinite;
}
@keyframes SavedAddressPickerSheet_pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.SavedAddressPickerSheet_empty {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  padding: 32px 0;
  margin: 0;
}
.SavedAddressPickerSheet_footer {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}
.SavedAddressPickerSheet_confirmBtn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-lg);
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.SavedAddressPickerSheet_confirmBtn:hover:not(:disabled) {
  background: var(--color-accent-dark);
  transform: scale(1.01);
}
.SavedAddressPickerSheet_confirmBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* components/ui/FloatingPanel.module.css */
.FloatingPanel_fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  border: 2.5px solid var(--color-accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-accent) 20%, transparent), var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.FloatingPanel_fab:hover {
  transform: scale(1.08);
  filter: brightness(0.93);
}
.FloatingPanel_overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
}
.FloatingPanel_panel {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 480px;
  max-height: 680px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 100;
  animation: FloatingPanel_slideUp 280ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  overflow: hidden;
}
@keyframes FloatingPanel_slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.FloatingPanel_header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.FloatingPanel_headerIcon {
  width: 32px;
  height: 32px;
  border-radius: 10%;
  object-fit: cover;
}
.FloatingPanel_headerIconFallback {
  width: 32px;
  height: 32px;
  border-radius: 10%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.FloatingPanel_headerTitle {
  font-weight: 800;
  font-size: var(--font-size-base);
  color: var(--color-accent);
  flex: 1;
}
.FloatingPanel_headerActions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.FloatingPanel_iconBtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.FloatingPanel_iconBtn:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.FloatingPanel_body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  min-width: 0;
  overflow-x: hidden;
}
.FloatingPanel_userBubble {
  align-self: flex-end;
  background: var(--color-accent);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 10px 14px;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  max-width: 85%;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  animation: FloatingPanel_fadeSlideUp 200ms ease-out both;
}
.FloatingPanel_responseBubble {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text);
  animation: FloatingPanel_fadeSlideUp 200ms ease-out both;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
.FloatingPanel_responseBubble p {
  margin: 0 0 8px;
}
.FloatingPanel_responseBubble p:last-child {
  margin-bottom: 0;
}
.FloatingPanel_responseBubble pre {
  overflow-x: auto;
  margin: 6px 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
  max-width: 100%;
}
.FloatingPanel_responseBubble pre code {
  white-space: pre-wrap;
  word-break: break-all;
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}
.FloatingPanel_assistantActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: -4px;
}
.FloatingPanel_messageActionButtons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.FloatingPanel_userMessageActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.FloatingPanel_ttsBtn {
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 150ms ease;
  padding: 0;
}
.FloatingPanel_ttsBtn:hover {
  color: var(--color-accent);
}
.FloatingPanel_retryBtn {
  border: none;
  background: transparent;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 5px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}
.FloatingPanel_retryBtn:hover:not(:disabled) {
  text-decoration: underline;
}
.FloatingPanel_retryBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.FloatingPanel_chipRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 8px 4px;
  border-bottom: 1px solid var(--color-border);
}
.FloatingPanel_messageGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}
.FloatingPanel_responseTime {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  padding: 0 4px;
}
.FloatingPanel_thinking {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-style: italic;
}
.FloatingPanel_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: FloatingPanel_bounce 1.2s ease-in-out infinite;
}
.FloatingPanel_dot:nth-child(2) {
  animation-delay: 0.15s;
}
.FloatingPanel_dot:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes FloatingPanel_fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes FloatingPanel_bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
}
.FloatingPanel_composer {
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.FloatingPanel_inputWrap {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-bg);
  transition: border-color 150ms ease;
}
.FloatingPanel_inputWrap:focus-within {
  border-color: var(--color-accent);
}
.FloatingPanel_input {
  width: 100%;
  border: none;
  border-radius: 0 0 18px 18px;
  padding: 8px 44px 8px 16px;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  background: transparent;
  color: var(--color-text);
  outline: none;
  resize: none;
  overflow-y: auto;
  max-height: 120px;
  line-height: 1.5;
}
.FloatingPanel_input::placeholder {
  color: var(--color-text-muted);
}
.FloatingPanel_inlineIconBtn {
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 150ms ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.FloatingPanel_inlineIconBtn:hover {
  color: var(--color-accent);
}
.FloatingPanel_inlineIconBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.FloatingPanel_speechStatus {
  padding: 0 12px 7px;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  line-height: 1.2;
}
.FloatingPanel_sendBtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 150ms ease, transform 150ms ease;
}
.FloatingPanel_sendBtn:hover:not(:disabled) {
  background: var(--color-accent-dark);
  transform: scale(1.06);
}
.FloatingPanel_sendBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.FloatingPanel_sessionList {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
}
.FloatingPanel_sessionGroupLabel {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 8px 12px 4px;
  display: block;
}
.FloatingPanel_sessionRow {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  transition: background 150ms ease;
  width: 100%;
}
.FloatingPanel_sessionRow:hover {
  background: var(--color-accent-light);
}
.FloatingPanel_sessionRowActive {
  background: var(--color-accent-light);
}
.FloatingPanel_sessionTitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.FloatingPanel_msgTs {
  font-size: 10px;
  color: var(--color-text-muted);
  padding: 0 2px;
  margin-left: auto;
}
.FloatingPanel_msgTsUser {
  font-size: 10px;
  color: var(--color-text-muted);
  padding: 0 4px;
  align-self: flex-end;
}
.FloatingPanel_sessionDate {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.FloatingPanel_emptyState {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
}
.FloatingPanel_emptyHint {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
}
.FloatingPanel_skillPicker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.FloatingPanel_skillBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
  width: 100%;
  text-align: left;
}
.FloatingPanel_skillBtn:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
}
.FloatingPanel_skillBtnActive {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
  font-weight: 600;
}
.FloatingPanel_skillEmoji {
  font-size: 18px;
  line-height: 1;
}
.FloatingPanel_skillDivider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.FloatingPanel_skillDivider::before,
.FloatingPanel_skillDivider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* components/ui/Dialog.module.css */
.Dialog_overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  animation: Dialog_fadeIn 200ms ease-out both;
}
.Dialog_content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 51;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background: var(--color-surface);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: Dialog_slideUp 280ms ease-out both;
}
.Dialog_header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.Dialog_title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}
.Dialog_description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.Dialog_footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}
.Dialog_closeBtn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.Dialog_closeBtn:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
@keyframes Dialog_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Dialog_slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* components/dashboard/AgentRunHistoryModal.module.css */
.AgentRunHistoryModal_content {
  max-height: min(85vh, 760px);
  max-width: 640px;
}
.AgentRunHistoryModal_eyebrow {
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: .09em;
  margin: 0;
  text-transform: uppercase;
}
.AgentRunHistoryModal_boundary {
  background: var(--color-accent-light);
  border: 1px solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  border-radius: 12px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
  margin: 0;
  padding: 11px 13px;
}
.AgentRunHistoryModal_boundary strong {
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
}
.AgentRunHistoryModal_scrollArea {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 10px 8px 14px;
  scrollbar-color: color-mix(in srgb, var(--color-border) 85%, transparent) transparent;
  scrollbar-width: thin;
}
.AgentRunHistoryModal_timeline {
  border-left: 1px solid var(--color-border);
  display: grid;
  gap: 22px;
  list-style: none;
  margin: 2px 0;
  padding: 2px 0 2px 24px;
}
.AgentRunHistoryModal_event {
  min-height: 42px;
  position: relative;
}
.AgentRunHistoryModal_event time {
  color: var(--color-text-muted);
  display: block;
  font-size: var(--font-size-xs);
  margin-bottom: 3px;
}
.AgentRunHistoryModal_event strong {
  color: var(--color-text);
  display: block;
  font-size: var(--font-size-sm);
}
.AgentRunHistoryModal_event p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
  margin: 4px 0 0;
}
.AgentRunHistoryModal_dot {
  background: var(--color-text-muted);
  border: 4px solid var(--color-surface);
  border-radius: 50%;
  height: 16px;
  left: -32px;
  position: absolute;
  top: 1px;
  width: 16px;
}
.AgentRunHistoryModal_dotNeutral {
  background: var(--color-text-muted);
  opacity: .6;
}
.AgentRunHistoryModal_dotWorker {
  background: #2563eb;
}
.AgentRunHistoryModal_dotProgress {
  background: color-mix(in srgb, var(--color-accent) 68%, var(--color-surface));
}
.AgentRunHistoryModal_dotCompleted {
  background: #2b9d61;
}
.AgentRunHistoryModal_dotFailed {
  background: #d94c44;
}
.AgentRunHistoryModal_dotCurrent {
  animation: AgentRunHistoryModal_currentPulse 1.2s ease-in-out infinite;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--color-accent) 22%, transparent), 0 0 15px color-mix(in srgb, var(--color-accent) 48%, transparent);
}
.AgentRunHistoryModal_legacy {
  background: var(--color-bg);
  border-radius: 12px;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  padding: 14px;
}
.AgentRunHistoryModal_legacy p {
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 5px 0 0;
}
.AgentRunHistoryModal_meta {
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 7px;
  padding-top: 14px;
}
.AgentRunHistoryModal_meta span,
.AgentRunHistoryModal_meta a {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  overflow-wrap: anywhere;
}
.AgentRunHistoryModal_meta a {
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: none;
}
.AgentRunHistoryModal_error {
  color: #b63432 !important;
}
@keyframes AgentRunHistoryModal_currentPulse {
  50% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--color-accent) 10%, transparent), 0 0 18px color-mix(in srgb, var(--color-accent) 56%, transparent);
    transform: scale(.9);
  }
}
@media (max-width: 640px) {
  .AgentRunHistoryModal_content {
    max-height: min(85vh, 680px);
    padding: 20px;
    width: calc(100% - 32px);
  }
}
