/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f7f4ef;
  --card: #ffffffe6;
  --text: #282522;
  --muted: #7b746d;
  --line: #ebe5dd;
  --accent: #9a725d;
  --accent-soft: #efe3dc;
  --green: #547564;
  --shadow: 0 14px 40px #47372b14;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  background: radial-gradient(circle at 85% 0%, #f0e2d8 0, transparent 32%), var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: 34px 24px 60px;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  display: flex;
}

h1 {
  letter-spacing: -.7px;
  margin: 2px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

h1 span {
  font-family: system-ui;
  font-size: .75em;
}

h2 {
  margin: 0;
  font-size: 19px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 1.8px;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
}

.datePill {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #ffffffa6;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
}

.card {
  background: var(--card);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #e8e0d7e6;
  border-radius: 22px;
}

.stats {
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  display: grid;
}

.statCard {
  padding: 20px 22px;
}

.statCard span {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.statCard strong {
  margin: 7px 0 3px;
  font-size: 30px;
  display: block;
}

.statCard small {
  color: var(--muted);
}

.progress {
  background: #eee9e4;
  border-radius: 999px;
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
}

.progress div {
  border-radius: inherit;
  background: var(--green);
  height: 100%;
  transition: width .4s;
}

.contentGrid {
  grid-template-columns: .9fr 1.25fr;
  align-items: stretch;
  gap: 14px;
  display: grid;
}

.leftColumn {
  gap: 14px;
  display: grid;
}

.tasksCard, .paymentsCard {
  padding: 22px;
}

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

.sectionTitle > span {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 700;
}

.taskList, .paymentList {
  gap: 2px;
  display: grid;
}

.task, .payment {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 11px;
  padding: 12px 2px;
  display: flex;
}

.task:first-child, .payment:first-child {
  border-top: 0;
}

.checkbox {
  border: 1.5px solid #baa99f;
  border-radius: 6px;
  flex: none;
  width: 20px;
  height: 20px;
}

.task div, .payment div {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.task b, .payment b {
  font-size: 14px;
}

.task small, .payment small {
  color: var(--muted);
}

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

.payment strong {
  font-size: 14px;
}

.empty {
  color: var(--muted);
  font-size: 14px;
}

.chatCard {
  grid-template-rows: auto 1fr auto auto;
  min-height: 650px;
  display: grid;
  overflow: hidden;
}

.chatHeader {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  display: flex;
}

.chatHeader p {
  color: var(--muted);
  margin: 3px 0 0;
  font-size: 12px;
}

.avatar {
  background: var(--accent-soft);
  width: 42px;
  height: 42px;
  color: var(--accent);
  border-radius: 14px;
  place-items: center;
  font-weight: 900;
  display: grid;
}

.online {
  background: #5c8d70;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  display: inline-block;
}

.messages {
  flex-direction: column;
  gap: 10px;
  max-height: 470px;
  padding: 20px;
  display: flex;
  overflow-y: auto;
}

.bubble {
  white-space: pre-wrap;
  border-radius: 17px;
  max-width: 79%;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.bubble.assistant {
  background: #f3efeb;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
}

.bubble.user {
  background: var(--green);
  color: #fff;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}

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

.suggestions {
  gap: 8px;
  padding: 0 18px 12px;
  display: flex;
  overflow-x: auto;
}

.suggestions button {
  white-space: nowrap;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}

.composer {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 14px;
  display: grid;
}

.composer input {
  background: #fff;
  border: 1px solid #ddd3ca;
  border-radius: 14px;
  outline: none;
  min-width: 0;
  padding: 13px 14px;
}

.composer input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.composer button {
  background: var(--text);
  color: #fff;
  border: 0;
  border-radius: 13px;
  padding: 0 18px;
  font-weight: 700;
}

.composer button:disabled {
  opacity: .5;
}

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

  .chatCard {
    min-height: 600px;
  }

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

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