@font-face {
  font-family: Inter;
  src: url("/share/assets/inter.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
}

@font-face {
  font-family: Pacifico;
  src: url("/share/assets/pacifico.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root { color-scheme: light; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: #1f1f1f;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "kern" 1;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

.page:has(> .page-outlet > .chat-page) {
  padding-bottom: 0;
}

.brand {
  display: block;
  font-family: Pacifico, cursive;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transform: translateY(-8px);
}

a { color: inherit; }

button {
  font-family: inherit;
}

.recording {
  max-width: 680px;
  margin: 24px auto 0;
}

.shared-list {
  max-width: 680px;
  margin: 24px auto 0;
}

.shared-list-items {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shared-list-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f2f2f7;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.shared-list-items li.completed { color: #8a8a8e; text-decoration: line-through; }

.shared-list-check {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.shared-list-empty { color: #8a8a8e; font-size: 17px; }

h1 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f2f7;
  color: #8a8a8e;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 18px;
}

.icon {
  display: block;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

speaker-avatars {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}

.avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.avatar + .avatar { margin-left: -8px; }
.speaker-0 { background: #779ecb; }
.speaker-1 { background: #7e8c71; }
.speaker-2 { background: #d8a94a; }

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-overflow {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
}

.content {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.content h2 {
  margin: 28px 0 9px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.content h3 {
  margin: 24px 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.content p { margin: 0 0 16px; }
.content ul, .content ol { margin: 0 0 16px; padding-left: 22px; }
.content li { margin: 6px 0; }

.content a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.content blockquote {
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid rgb(0 0 0 / 15%);
  color: rgb(31 31 31 / 70%);
}

.content pre {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f2f7;
  overflow-x: auto;
}
.content code { font-family: "SF Mono", ui-monospace, Menlo, monospace; }
.content pre code { font-size: 14px; white-space: pre; }

.content hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.unavailable {
  max-width: 680px;
  margin: 64px auto 0;
}

.unavailable p {
  color: rgb(60 60 67 / 60%);
  font-size: 17px;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.app-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 20px;
}

.app-header .brand {
  grid-row: 1;
  grid-column: 2;
}

.app-header profile-button {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

.profile-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgb(118 118 128 / 12%);
  color: rgb(60 60 67 / 60%);
  text-decoration: none;
  cursor: pointer;
}

.profile-button svg { width: 19px; height: 19px; }

.profile-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-button-initials {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.sign-in {
  max-width: 420px;
  margin: 80px auto 0;
}

.sign-in h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.sign-in p {
  margin: 0 0 20px;
  color: rgb(60 60 67 / 60%);
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.sign-in form {
  display: flex;
  gap: 8px;
}

.sign-in input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgb(60 60 67 / 20%);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
}

.sign-in button {
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.sign-in .form-error {
  margin: 12px 0 0;
  color: #d33;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.recording-groups {
}

.day-header {
  padding: 18px 0 6px;
  color: rgb(60 60 67 / 60%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.recording-row {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  height: 104px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(60 60 67 / 12%);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 104px;
}

.recording-row:last-of-type { border-bottom: none; }

.recording-row-link {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.recording-row-trailing {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: 2px;
}

.kind-badge {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
}

.kind-badge svg { width: 20px; height: 20px; color: #fff; }
.kind-badge-slate { background: #779ecb; }
.kind-badge-sage { background: #7e8c71; }
.kind-badge-gold { background: #d8a94a; }
.kind-badge-busy { background: rgb(142 142 147 / 45%); }

.recording-row-main {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.recording-row-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.recording-row-title {
  overflow: hidden;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recording-row-body {
  overflow: hidden;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recording-row-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  height: 18px;
  white-space: nowrap;
  color: #bebebe;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.recording-row-meta speaker-avatars {
  margin-left: 0;
}

.recording-row-chevron {
  flex: 0 0 auto;
  padding-top: 3px;
  color: rgb(60 60 67 / 30%);
}

.recording-row-chevron svg { display: block; width: 13px; height: 13px; }

.spinner {
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 2px solid rgb(60 60 67 / 20%);
  border-top-color: rgb(60 60 67 / 60%);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Buttons */

.button-primary,
.button-secondary,
.button-destructive {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button-primary { background: #1f1f1f; color: #fff; }
.button-secondary { background: rgb(118 118 128 / 12%); color: inherit; }
.button-destructive { background: rgb(255 59 48 / 12%); color: #d33; }

.icon-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  color: #8a8a8e;
  cursor: pointer;
}

.icon-button:hover { background: rgb(60 60 67 / 8%); }
.icon-button svg { width: 18px; height: 18px; }
.icon-button:disabled { opacity: 0.4; cursor: default; }

/* Page toolbar / back button, used by every pushed screen */

.page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 8px;
}

.page-back {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.page-back:hover { background: rgb(60 60 67 / 8%); }
.page-back svg { width: 20px; height: 20px; }

.page-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown menu */

.dropdown-menu {
  position: fixed;
  z-index: 20;
  min-width: 160px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
}

.dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: none;
  color: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.dropdown-menu-item:hover { background: rgb(60 60 67 / 8%); }
.dropdown-menu-item svg { width: 16px; height: 16px; flex: 0 0 16px; }
.dropdown-menu-item.destructive { color: #d33; }

/* Modal overlay: transcript/speaker/naming/share sheets, confirm dialogs */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(0 0 0 / 40%);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px rgb(0 0 0 / 25%);
}

.modal-close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgb(118 118 128 / 12%);
  color: rgb(60 60 67 / 60%);
  cursor: pointer;
}

.modal-close-button:hover { background: rgb(118 118 128 / 20%); }
.modal-close-button svg { width: 15px; height: 15px; }

.modal-card h2 {
  margin: 0 28px 12px 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.modal-card p { margin: 0 0 16px; line-height: 1.5; }

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.confirm-dialog input,
.confirm-dialog textarea,
.name-person-sheet input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgb(60 60 67 / 20%);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
}

.confirm-dialog textarea { min-height: 72px; margin-top: 8px; resize: vertical; }

.name-person-existing {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgb(60 60 67 / 12%);
}

.name-person-section-label {
  margin-bottom: 8px;
  color: rgb(60 60 67 / 60%);
  font-size: 13px;
}

.name-person-existing-item {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: none;
  color: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.name-person-existing-item:hover { background: rgb(60 60 67 / 8%); }

/* Share sheet */

.share-sheet-status { color: rgb(60 60 67 / 60%); }

.share-sheet-link-row { display: flex; gap: 8px; margin-bottom: 8px; }
.share-sheet-link-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgb(60 60 67 / 20%);
  border-radius: 10px;
  background: rgb(60 60 67 / 6%);
  color: inherit;
  font-family: inherit;
  font-size: 16px;
}

/* Transcript sheet */

.transcript-sheet-body {
  max-height: 50vh;
  overflow-y: auto;
  margin-bottom: 8px;
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.6;
}

/* Speaker sheet */

.speaker-sheet-list { display: flex; flex-direction: column; gap: 4px; }

.speaker-sheet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.speaker-sheet-row .avatar { flex: 0 0 36px; width: 36px; height: 36px; font-size: 13px; }
.speaker-sheet-info { flex: 1; min-width: 0; }
.speaker-sheet-name { font-weight: 600; }
.speaker-sheet-talk { color: rgb(60 60 67 / 60%); font-size: 13px; }

/* Recording detail page */

.detail-page { padding-bottom: 40px; }
.detail-page h1 { margin: 4px 0 16px; }

.speakers-button {
  display: inline-flex;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.processing-banner {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgb(216 169 74 / 15%);
  color: #9a6b00;
  font-size: 14px;
}

/* Chat page */

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}

.chat-empty, .chat-error {
  margin: 40px 0;
  text-align: center;
  color: rgb(60 60 67 / 60%);
}

.chat-row { display: flex; }
.chat-row-user { justify-content: flex-end; }
.chat-row-assistant { display: block; }

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.45;
}

.chat-bubble-user { background: #1f1f1f; color: #fff; }

/* An assistant reply reads like the recording's own summary text, not a message bubble. */
.chat-row-assistant .content { font-size: 15px; }
.chat-row-assistant .content p:last-child { margin-bottom: 0; }

.chat-retry-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  color: #d33;
  font-size: 14px;
}

.chat-composer {
  position: sticky;
  bottom: 0;
  padding: 12px 0;
  background: #fff;
  border-top: 1px solid rgb(60 60 67 / 12%);
}

.chat-composer input {
  width: 100%;
  padding: 10px 52px 10px 14px;
  border: 1px solid rgb(60 60 67 / 20%);
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
}

.chat-send-button {
  display: grid;
  position: absolute;
  top: 50%;
  right: 6px;
  place-items: center;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  cursor: pointer;
}

.chat-send-button svg { width: 16px; height: 16px; }
.chat-send-button:disabled { opacity: 0.4; cursor: default; }

/* Settings-style pages: Settings, People, Dictionary, Tags */

.settings-page h1 { margin: 4px 0 16px; }

.settings-description {
  margin: -8px 0 16px;
  color: rgb(60 60 67 / 60%);
  font-size: 14px;
}

.settings-empty {
  margin-top: 24px;
  color: rgb(60 60 67 / 60%);
}

.settings-section { margin-bottom: 28px; }

.settings-section-label {
  margin-bottom: 8px;
  color: rgb(60 60 67 / 60%);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.settings-me-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgb(118 118 128 / 6%);
}

.settings-me-name { flex: 1; font-weight: 600; }

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  background: rgb(118 118 128 / 6%);
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
}

.settings-row + .settings-row { margin-top: 6px; }
.settings-row svg { width: 16px; height: 16px; color: rgb(60 60 67 / 40%); }

button.settings-row {
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
}

.settings-row-destructive { color: #d33; justify-content: flex-start; }

.people-list, .word-list, .tag-list { display: flex; flex-direction: column; gap: 4px; }

.people-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgb(60 60 67 / 12%);
}

.people-row:last-child { border-bottom: none; }
.people-avatar { flex: 0 0 40px; width: 40px; height: 40px; font-size: 14px; background: #779ecb; }
.people-row-info { flex: 1; min-width: 0; }
.people-row-name { font-weight: 600; }
.people-row-subtitle { color: rgb(60 60 67 / 60%); font-size: 13px; }

.word-row, .tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgb(60 60 67 / 12%);
}

.word-row:last-child, .tag-row:last-child { border-bottom: none; }
.word-row span { flex: 1; }
.tag-row-info { flex: 1; min-width: 0; }
.tag-row-name { font-weight: 600; }
.tag-row-description { color: rgb(60 60 67 / 60%); font-size: 13px; margin-top: 2px; }
.tag-presets { display: flex; gap: 8px; margin-bottom: 16px; }

/* Action inbox — sized/colored to match `ActionInboxCard`/`ActionIcon` in the iOS app */

.inbox-row {
  margin-bottom: 8px;
  margin-top: 12px;
}

.inbox-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #f2f2f7;
  color: rgb(60 60 67 / 60%);
  font-size: 15px;
}

.inbox-empty svg { width: 16px; height: 16px; flex: 0 0 16px; }

.inbox-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.inbox-card {
  display: flex;
  flex: 0 0 268px;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: #f2f2f7;
}

.inbox-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inbox-card-icon-tile {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
}

.inbox-card-icon-tile svg { width: 18px; height: 18px; color: #fff; }

.inbox-card-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inbox-card-text {
  min-height: 2.6em;
  overflow: hidden;
  color: rgb(31 31 31 / 75%);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.inbox-card-actions { display: flex; gap: 8px; }
.inbox-card-actions .button-primary,
.inbox-card-actions .button-secondary {
  flex: 1;
  justify-content: center;
}
.inbox-card-actions .inbox-card-view-button { flex: 0 0 84px; }

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
  body { background: #000; color: #f2f2f7; }
  .pill { background: #1c1c1e; color: #98989f; }
  .avatar { border-color: #000; }
  .unavailable p { color: rgb(235 235 245 / 60%); }
  .sign-in p { color: rgb(235 235 245 / 60%); }
  .sign-in input { background: #1c1c1e; border-color: rgb(235 235 245 / 20%); }
  .sign-in button { background: #f2f2f7; color: #000; }
  .profile-button { background: rgb(118 118 128 / 24%); color: rgb(235 235 245 / 60%); }
  .day-header { color: rgb(235 235 245 / 60%); }
  .recording-row { border-bottom-color: rgb(235 235 245 / 12%); }
  .recording-row-chevron { color: rgb(235 235 245 / 30%); }
  .shared-list-items li { background: #1c1c1e; color: #f2f2f7; }
  .shared-list-items li.completed, .shared-list-empty { color: #98989f; }
  .spinner { border-color: rgb(235 235 245 / 20%); border-top-color: rgb(235 235 245 / 60%); }

  .button-secondary { background: rgb(118 118 128 / 24%); color: #fff; }
  .button-destructive { background: rgb(255 69 58 / 18%); color: #ff453a; }
  .button-primary { background: #f2f2f7; color: #000; }

  .icon-button { color: #98989f; }
  .icon-button:hover { background: rgb(235 235 245 / 8%); }
  .page-back:hover { background: rgb(235 235 245 / 8%); }

  .dropdown-menu { background: #1c1c1e; box-shadow: 0 4px 20px rgb(0 0 0 / 50%); }
  .dropdown-menu-item:hover { background: rgb(235 235 245 / 8%); }
  .dropdown-menu-item.destructive { color: #ff453a; }

  .modal-card { background: #1c1c1e; box-shadow: 0 10px 40px rgb(0 0 0 / 60%); }
  .modal-close-button { background: rgb(118 118 128 / 24%); color: rgb(235 235 245 / 60%); }
  .modal-close-button:hover { background: rgb(118 118 128 / 34%); }
  .confirm-dialog input, .confirm-dialog textarea, .name-person-sheet input {
    background: #2c2c2e; border-color: rgb(235 235 245 / 20%);
  }
  .name-person-existing { border-top-color: rgb(235 235 245 / 12%); }
  .name-person-section-label { color: rgb(235 235 245 / 60%); }
  .name-person-existing-item:hover { background: rgb(235 235 245 / 8%); }
  .share-sheet-status { color: rgb(235 235 245 / 60%); }
  .share-sheet-link-row input { background: rgb(235 235 245 / 6%); border-color: rgb(235 235 245 / 20%); }

  .speaker-sheet-talk { color: rgb(235 235 245 / 60%); }

  .content blockquote { border-left-color: rgb(235 235 245 / 20%); color: rgb(235 235 245 / 70%); }
  .content pre { background: #1c1c1e; }
  .content hr { border-top-color: rgb(235 235 245 / 15%); }

  .processing-banner { background: rgb(216 169 74 / 20%); color: #e8b84b; }
  .chat-empty, .chat-error { color: rgb(235 235 245 / 60%); }
  .chat-bubble-user { background: #f2f2f7; color: #000; }
  .chat-composer { background: #000; border-top-color: rgb(235 235 245 / 12%); }
  .chat-composer input { background: #1c1c1e; border-color: rgb(235 235 245 / 20%); }
  .chat-send-button { background: #f2f2f7; color: #000; }

  .settings-description, .settings-empty, .settings-section-label { color: rgb(235 235 245 / 60%); }
  .settings-me-row, .settings-row { background: rgb(118 118 128 / 12%); }
  .settings-row svg { color: rgb(235 235 245 / 40%); }
  .settings-row-destructive { color: #ff453a; }

  .people-row, .word-row, .tag-row { border-bottom-color: rgb(235 235 245 / 12%); }
  .people-row-subtitle, .tag-row-description { color: rgb(235 235 245 / 60%); }

  .inbox-empty { background: #1c1c1e; color: rgb(235 235 245 / 60%); }
  .inbox-card { background: #1c1c1e; }
  .inbox-card-text { color: rgb(242 242 247 / 75%); }
}
