/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.5.19_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/.pnpm/next@15.5.19_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-strong: #fdfbf6;
  --ink: #202124;
  --muted: #666b73;
  --line: #dedbd2;
  --blue: #276ef1;
  --teal: #087f7a;
  --coral: #d64b38;
  --green: #277245;
  --sidebar: #22252a;
  --sidebar-active: #343942;
  --sidebar-text: #f9fafb;
  --sidebar-muted: #b8c2cc;
  --topbar: rgba(246, 244, 239, 0.92);
  --icon-bg: #edf4f2;
  --code-bg: #24272c;
  --code-ink: #f9fafb;
  --user-message: #e8f0fe;
  --assistant-message: #f0eee6;
  --control-bg: #ffffff;
  --shadow: 0 12px 36px rgba(32, 33, 36, 0.08);
}

.appShell[data-theme="dark"] {
  --bg: #101418;
  --surface: #171d22;
  --surface-strong: #20272d;
  --ink: #edf2f4;
  --muted: #9ba8b2;
  --line: #323c45;
  --blue: #5f9df7;
  --teal: #38b8ad;
  --coral: #ff7868;
  --green: #4fcb7b;
  --sidebar: #0d1115;
  --sidebar-active: #202a32;
  --sidebar-text: #f4f7f8;
  --sidebar-muted: #9ba8b2;
  --topbar: rgba(16, 20, 24, 0.92);
  --icon-bg: #213239;
  --code-bg: #0d1115;
  --code-ink: #f4f7f8;
  --user-message: #18365f;
  --assistant-message: #26313a;
  --control-bg: #11171c;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.appShell {
  background: var(--bg);
  color: var(--ink);
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--sidebar);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  transition:
    width 180ms ease,
    padding 180ms ease;
}

.sidebar.isOpen {
  width: 280px;
}

.sidebar.isClosed {
  width: 0;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.brandRow,
.topbar,
.panelHeader,
.blockHeader,
.blockIdentity,
.blockActions,
.topbarActions,
.proposalActions,
.taskForm,
.taskRow,
.chatForm {
  align-items: center;
  display: flex;
}

.brandRow,
.topbar,
.panelHeader,
.blockHeader {
  justify-content: space-between;
  gap: 12px;
}

.eyebrow {
  color: #7f8c8d;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.brandRow .eyebrow {
  color: var(--sidebar-muted);
}

h1,
h2 {
  margin: 0;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 17px;
}

.commandButton,
.outlineButton,
.iconButton,
.pageButton,
.libraryItem,
.packageSummary,
.packageAction {
  border: 0;
  border-radius: 8px;
}

.commandButton,
.outlineButton {
  align-items: center;
  display: inline-flex;
  font-weight: 750;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
}

.commandButton {
  background: var(--blue);
  color: #fff;
}

.outlineButton {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.iconButton {
  align-items: center;
  background: transparent;
  color: inherit;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-width: 34px;
}

.iconButton:hover,
.outlineButton:hover,
.libraryItem:hover,
.packageSummary:hover,
.pageButton:hover {
  filter: brightness(0.96);
}

.iconButton.primary {
  background: var(--teal);
  color: #fff;
}

.iconButton.danger {
  color: var(--coral);
}

.pageList {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.pageButton {
  background: transparent;
  color: var(--sidebar-text);
  min-height: 40px;
  padding: 0 12px;
  text-align: left;
}

.pageButton.isActive {
  background: var(--sidebar-active);
}

.pageButton span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floatingSidebarButton {
  background: var(--sidebar);
  border: 0;
  border-radius: 0 8px 8px 0;
  color: #fff;
  height: 42px;
  left: 0;
  position: fixed;
  top: 20px;
  width: 38px;
  z-index: 3;
}

.workspace {
  flex: 1 1;
  min-width: 0;
}

.topbar {
  background: var(--topbar);
  border-bottom: 1px solid var(--line);
  min-height: 84px;
  padding: 18px 28px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.appShell.sidebarCollapsed .topbar {
  padding-left: 64px;
}

.pageTitleWrap {
  min-width: 0;
}

.pageTitle {
  background: transparent;
  border: 0;
  color: var(--ink);
  display: block;
  font-size: 30px;
  font-weight: 800;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

.pageTitleWrap p,
.statusText {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
}

.topbarActions {
  gap: 10px;
}

.contentGrid {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: 20px 24px 32px;
}

.contentGrid.railCollapsed {
  grid-template-columns: minmax(0, 1fr) 52px;
}

.blockCanvas {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  min-width: 0;
}

.blockShell,
.emptyState {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blockShell {
  overflow: hidden;
}

.blockShell.isDragging {
  opacity: 0.5;
}

.blockShell.isCollapsed .blockHeader {
  border-bottom: 0;
}

.blockHeader {
  border-bottom: 1px solid var(--line);
  min-height: 48px;
  padding: 8px 12px;
}

.blockIdentity {
  flex: 1 1;
  gap: 8px;
  min-width: 0;
}

.dragHandle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 28px;
}

.blockIcon,
.libraryIcon {
  align-items: center;
  background: var(--icon-bg);
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-width: 34px;
}

.blockTitleButton,
.blockTitleInput {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  min-width: 120px;
  outline: 0;
  width: 100%;
}

.blockTitleButton {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blockTitleInput {
  border-bottom: 1px solid var(--teal);
  min-height: 34px;
}

.blockRenameButton {
  color: var(--muted);
  flex: 0 0 auto;
}

.blockActions {
  color: var(--muted);
  font-size: 12px;
  gap: 6px;
}

.blockActions span {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.noteBlock textarea {
  background: var(--surface-strong);
  border: 0;
  border-right: 1px solid var(--line);
  min-height: 320px;
  outline: 0;
  padding: 12px;
  resize: vertical;
  color: var(--ink);
}

.markdownPreview {
  line-height: 1.55;
  overflow: auto;
  padding: 12px 14px;
}

.markdownPreview :first-child {
  margin-top: 0;
}

.markdownPreview pre,
.proposalPanel pre {
  background: var(--code-bg);
  border-radius: 8px;
  color: var(--code-ink);
  overflow: auto;
  overflow-wrap: anywhere;
  padding: 12px;
  white-space: pre-wrap;
}

.tasksBlock,
.chatBlock,
.chartBlock,
.weatherBlock {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  padding: 10px;
}

.taskForm,
.chatForm,
.weatherForm {
  gap: 10px;
}

.taskForm input,
.chatForm input,
.weatherForm input,
.taskRow input {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 38px;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
  width: 100%;
  color: var(--ink);
}

.taskList {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.taskRow {
  gap: 10px;
}

.checkButton {
  align-items: center;
  background: var(--control-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  min-width: 28px;
}

.checkButton.isDone {
  background: var(--green);
  border-color: var(--green);
}

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

.messageList {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  max-height: 360px;
  min-width: 0;
  overflow: auto;
}

.assistantEmpty {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.message {
  border-radius: 8px;
  line-height: 1.45;
  max-width: 82%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

.message.user {
  background: var(--user-message);
  justify-self: end;
}

.message.assistant {
  background: var(--assistant-message);
  display: block;
  justify-self: start;
}

.message.assistant svg {
  margin-right: 8px;
  vertical-align: middle;
}

.proposalPanel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.proposalActions {
  gap: 10px;
  justify-content: flex-end;
}

.assistantBubbleButton {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: var(--shadow);
  color: #fff;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 56px;
  z-index: 8;
}

.assistantOverlay {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 24px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: min(680px, calc(100vh - 48px));
  min-width: 0;
  overflow: hidden;
  position: fixed;
  right: 24px;
  width: min(420px, calc(100vw - 48px));
  z-index: 9;
}

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

.assistantOverlayHeader h2 {
  font-size: 16px;
}

.assistantOverlay .chatBlock {
  min-height: 0;
}

.assistantOverlay .messageList {
  max-height: none;
  min-height: 260px;
}

.installedBlockRail {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  padding: 14px;
  position: -webkit-sticky;
  position: sticky;
  top: 108px;
}

.installedBlockRail.isCollapsed {
  gap: 0;
  justify-items: center;
  padding: 8px;
}

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

.installedBlockRail.isCollapsed .railHeader {
  justify-content: center;
}

.railTitle {
  min-width: 0;
}

.installedBlockRail.isCollapsed .railTitle {
  display: none;
}

.railHeader h2 {
  font-size: 16px;
}

.railSection {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.includedRailSection {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.railItem {
  min-height: 62px;
}

.railItem small {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.railMarketplaceButton {
  justify-content: center;
}

.libraryItem {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 66px;
  padding: 10px;
  text-align: left;
}

.libraryItem strong,
.libraryItem small {
  display: block;
}

.libraryItem small {
  color: var(--muted);
  margin-top: 2px;
}

.libraryItem .dependencyText {
  color: var(--teal);
  font-size: 12px;
}

.modalOverlay {
  align-items: center;
  background: rgba(10, 14, 18, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 20;
}

.marketplaceModal,
.settingsModal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: min(760px, calc(100vh - 44px));
  max-width: 720px;
  min-height: 0;
  overflow: hidden;
  width: min(720px, 100%);
}

.settingsModal {
  max-width: 560px;
  width: min(560px, 100%);
}

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

.modalBody {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
}

.settingsBody {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  overflow: auto;
  padding: 18px;
}

.settingsSection {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}

.settingsSection h3 {
  font-size: 16px;
  margin: 0;
}

.settingsList {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  margin: 0;
}

.settingsList div {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.settingsList dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.settingsList dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.settingsCode {
  background: var(--code-bg);
  border-radius: 8px;
  color: var(--code-ink);
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.settingsHelp {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}

.settingsLink {
  justify-self: start;
}

.marketplaceSection {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.marketplaceSection + .marketplaceSection {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

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

.marketplaceSectionHeader h3 {
  font-size: 15px;
  margin: 0;
}

.marketplaceSectionHeader span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.packageList,
.coreBlockList {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.packageRow {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.packageSummary {
  align-items: center;
  background: transparent;
  color: var(--ink);
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 62px;
  padding: 10px;
  text-align: left;
  width: 100%;
}

.packageSummaryText {
  min-width: 0;
}

.packageSummaryText strong,
.packageSummaryText small {
  display: block;
}

.packageSummaryText strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.packageSummaryText small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.packageDetails {
  border-top: 1px solid var(--line);
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  padding: 12px;
}

.packageMeta {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  margin: 0;
}

.packageMeta div {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.packageMeta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.packageMeta dd {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.packageAction {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  font-weight: 750;
  gap: 8px;
  justify-self: end;
  min-height: 36px;
  padding: 0 13px;
}

.packageAction.danger {
  background: var(--coral);
}

.coreBlocksSection .libraryItem {
  min-height: 62px;
}

.libraryEmpty {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.installError {
  border: 1px solid color-mix(in srgb, var(--coral) 45%, transparent);
  color: var(--coral);
  font-size: 13px;
  margin: 0;
  padding: 10px;
}

.chartFrame {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 12px;
}

.chartFrame > div {
  color: var(--blue);
}

.renderedChart {
  display: block;
  height: auto;
  width: 100%;
}

.chartLoading,
.chartActions {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
}

.chartLoading {
  justify-content: center;
  min-height: 236px;
}

.chartActions {
  justify-content: space-between;
}

.weatherForm,
.weatherHero,
.weatherMeta {
  align-items: center;
  display: flex;
  gap: 10px;
}

.weatherForm input,
.weatherLocationField {
  flex: 1 1;
}

.weatherLocationField {
  position: relative;
}

.weatherSuggestions {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  left: 0;
  max-height: 220px;
  overflow: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 4;
}

.weatherSuggestion {
  background: transparent;
  border: 0;
  color: var(--ink);
  display: grid;
  grid-gap: 2px;
  gap: 2px;
  padding: 10px 12px;
  text-align: left;
}

.weatherSuggestion:hover,
.weatherSuggestion:focus-visible {
  background: var(--surface-strong);
}

.weatherSuggestion span {
  color: var(--muted);
  font-size: 12px;
}

.weatherHero {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  justify-content: space-between;
  padding: 14px;
}

.weatherHero h3,
.weatherSection h4 {
  font-size: 15px;
  margin: 0;
}

.weatherHero p,
.weatherMeta {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
}

.weatherHero strong {
  color: var(--blue);
  font-size: 34px;
}

.weatherGrid {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.weatherMetric {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  display: grid;
  grid-gap: 4px;
  gap: 4px;
  min-height: 68px;
  padding: 10px;
}

.weatherMetric span,
.weatherTable th,
.weatherMeta {
  color: var(--muted);
  font-size: 12px;
}

.weatherMetric strong {
  font-size: 15px;
}

.weatherMeta {
  flex-wrap: wrap;
}

.weatherSection {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.weatherTableWrap {
  border: 1px solid var(--line);
  overflow: auto;
}

.weatherTable {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.weatherTable th,
.weatherTable td {
  border-bottom: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
  white-space: nowrap;
}

.weatherTable td {
  font-size: 13px;
}

.weatherLoading {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 8px;
  min-height: 120px;
  justify-content: center;
}

.iframeBlock {
  display: grid;
  padding: 0;
}

.iframeBlock iframe {
  background: var(--surface);
  border: 0;
  display: block;
  min-height: 160px;
  width: 100%;
}

.emptyState {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: center;
  min-height: 220px;
}

.spin {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .contentGrid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contentGrid.railCollapsed {
    grid-template-columns: minmax(0, 1fr);
  }

  .installedBlockRail {
    position: static;
  }

  .installedBlockRail.isCollapsed {
    justify-items: stretch;
  }

  .installedBlockRail.isCollapsed .railHeader {
    justify-content: space-between;
  }

  .installedBlockRail.isCollapsed .railTitle {
    display: block;
  }
}

@media (max-width: 760px) {
  .appShell {
    display: block;
  }

  .sidebar.isOpen {
    min-height: 100vh;
    position: fixed;
    width: min(320px, 88vw);
    z-index: 5;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .appShell.sidebarCollapsed .topbar {
    padding-left: 64px;
  }

  .contentGrid {
    padding: 18px;
  }

  .pageTitle {
    font-size: 26px;
  }

  .blockHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .blockActions {
    width: 100%;
  }

  .blockActions span {
    flex: 1 1;
  }

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

  .noteBlock textarea {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .message {
    max-width: 100%;
  }

  .assistantBubbleButton {
    bottom: 16px;
    right: 16px;
  }

  .assistantOverlay {
    bottom: 12px;
    max-height: calc(100vh - 24px);
    right: 12px;
    width: calc(100vw - 24px);
  }

  .assistantOverlay .messageList {
    min-height: 220px;
  }

  .modalOverlay {
    align-items: flex-start;
    padding: 14px;
  }

  .marketplaceModal {
    max-height: calc(100vh - 28px);
  }

  .modalHeader,
  .modalBody {
    padding: 14px;
  }

  .packageDetails {
    align-items: stretch;
  }

  .packageAction {
    justify-self: stretch;
    justify-content: center;
  }
}

