:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --ink: #0f172a;
  --muted: #64748b;
  --faint: #94a3b8;
  --border: #e2e8f0;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #dbeafe;
  --mint: #14b8a6;
  --mint-soft: #ccfbf1;
  --violet: #7c3aed;
  --violet-soft: #ede9fe;
  --amber: #f59e0b;
  --amber-soft: #fef3c7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --success: #059669;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
}

.auth-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08)),
    var(--bg);
}

.auth-card {
  width: min(100%, 440px);
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-form,
.account-form {
  display: grid;
  gap: 12px;
}

.auth-status {
  color: var(--muted);
  font-size: 0.92rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.brand-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
  font-weight: 900;
}

h1 {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-card p,
.topbar p,
.section-heading p,
.settings-card p,
.large-tile small,
.tool-card p,
.privacy-strip {
  color: var(--muted);
}

.app-nav {
  display: grid;
  gap: 8px;
}

.app-tab {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 0 12px;
  font-weight: 800;
}

.app-tab.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.app-main {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.topbar h2 {
  margin-top: 4px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

.eyebrow {
  display: block;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-page {
  display: none;
}

.app-page.active {
  display: block;
}

.page-grid,
.calendar-workspace,
.settings-grid,
.conversation-workspace {
  display: grid;
  gap: 16px;
}

.assistant-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: stretch;
}

.calendar-workspace {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

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

.conversation-workspace {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  margin-bottom: 16px;
}

.hero-card,
.agenda-panel,
.entry-card,
.settings-card,
.month-calendar,
.toolbox-panel,
.privacy-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.agenda-panel,
.entry-card,
.settings-card,
.month-calendar,
.toolbox-panel {
  padding: 18px;
}

.conversation-recorder {
  display: grid;
  gap: 14px;
}

.conversation-controls,
.conversation-save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.conversation-audio {
  width: 100%;
}

.conversation-fields {
  grid-template-columns: 180px minmax(0, 1fr);
}

.conversation-transcript {
  display: grid;
  gap: 7px;
}

.conversation-summary {
  display: grid;
  gap: 14px;
}

.summary-block {
  display: grid;
  gap: 6px;
}

.summary-block h4 {
  font-size: 0.88rem;
}

.summary-block ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.saved-conversations {
  margin-top: 0;
}

.conversation-list {
  display: grid;
  gap: 12px;
}

.conversation-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.conversation-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.conversation-card h4 {
  margin-bottom: 3px;
}

.conversation-card small,
.conversation-card p,
.conversation-card summary {
  color: var(--muted);
}

.conversation-card details {
  display: grid;
  gap: 10px;
}

.conversation-card summary {
  cursor: pointer;
  font-weight: 800;
}

.conversation-transcript-text {
  max-height: 180px;
  overflow: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  white-space: pre-wrap;
}

.assistant-hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.section-heading,
.panel-heading,
.chat-heading,
.calendar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-heading {
  margin-bottom: 18px;
}

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

.assistant-tiles,
.entry-tiles,
.info-tiles,
.list-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assistant-tiles {
  grid-template-columns: 1fr;
}

.shared-list-workspace {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.shared-list-picker {
  display: grid;
  gap: 10px;
}

.shared-list-tile {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.shared-list-tile span {
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shared-list-tile strong {
  font-size: 1rem;
}

.shared-list-tile small {
  color: var(--muted);
}

.shared-list-tile.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.shared-list-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.shared-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.shared-list-header h3 {
  margin-top: 4px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.shared-list-header p {
  margin-top: 4px;
  color: var(--muted);
}

.shared-list-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 140px 150px auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.timed-reminder-panel {
  margin-top: 16px;
}

.timed-reminder-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 130px;
  gap: 10px;
  align-items: end;
}

.timed-reminder-form .recipient-fieldset,
.timed-reminder-form button {
  grid-column: 1 / -1;
}

.account-list {
  display: grid;
  gap: 8px;
}

.account-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.account-row div {
  display: grid;
  gap: 2px;
}

.account-row span,
.account-row small {
  color: var(--muted);
  font-size: 0.82rem;
}

.account-active-toggle {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-active-toggle input {
  width: auto;
}

.account-actions {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-end;
  gap: 8px !important;
}

.account-row > div:first-child,
.account-actions {
  grid-column: span 1;
}

.danger-action {
  border-color: var(--danger-soft);
  color: var(--danger);
  background: #fff;
}

.recipient-fieldset {
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.recipient-fieldset legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.recipient-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.recipient-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.recipient-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.device-sync-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.device-sync-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.shared-list-input input {
  min-width: 0;
}

.shared-list-items {
  display: grid;
  gap: 10px;
}

.shared-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.shared-list-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--success);
}

.shared-list-item-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.shared-list-item-body strong {
  overflow-wrap: anywhere;
}

.shared-list-item-body small {
  color: var(--muted);
}

.shared-list-item.completed .shared-list-item-body strong {
  color: var(--muted);
  text-decoration: line-through;
}

.delete-list-item {
  min-width: 70px;
  color: var(--danger);
  background: var(--danger-soft);
}

.empty-list-state {
  display: grid;
  gap: 5px;
  min-height: 140px;
  place-content: center;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: var(--surface-soft);
}

.empty-list-state strong {
  color: var(--ink);
}

.large-tile {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow);
}

.large-tile span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.large-tile strong {
  font-size: 1.1rem;
}

.large-tile:hover,
.secondary-action:hover,
.text-button:hover,
.file-button:hover,
.icon-button:hover {
  border-color: var(--accent);
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 420px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.chat-message {
  width: fit-content;
  max-width: min(90%, 640px);
  padding: 11px 13px;
  border-radius: var(--radius);
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.chat-message.assistant {
  background: #fff;
  border: 1px solid var(--border);
}

.chat-message.user {
  justify-self: end;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 12px;
}

.photo-help {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.photo-help h3 {
  font-size: 1rem;
}

.photo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.photo-help textarea {
  margin-top: 12px;
}

.photo-help .primary-action {
  margin-top: 10px;
}

.quick-filters,
.mode-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.mode-tab,
.filter-pill,
.text-button,
.secondary-action,
.file-button {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.mode-tab.active,
.filter-pill.active {
  border-color: rgba(15, 118, 110, 0.45);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

.primary-action {
  border: 0;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.primary-action.listening {
  background: var(--amber);
  color: #201602;
}

.action-icon {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.mode-panel {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px;
  outline: none;
}

textarea {
  resize: vertical;
  line-height: 1.45;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.13);
}

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

.form-actions,
.camera-actions,
.voice-actions,
.calendar-feed-tools,
.apple-tools,
.llm-tools {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
}

.calendar-feed-tools {
  align-items: end;
  margin-bottom: 12px;
}

.calendar-feed-tools label {
  flex: 1 1 220px;
}

.calendar-feed-tools .feed-url-field {
  flex: 2 1 360px;
}

.apple-tools label,
.llm-tools label {
  flex: 1 1 260px;
}

.file-button input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.photo-preview {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.photo-preview img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.weekday-row {
  margin-bottom: 7px;
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.calendar-day {
  min-height: 112px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 8px;
  text-align: left;
  display: grid;
  align-content: start;
  gap: 4px;
  overflow: hidden;
}

.calendar-day.muted {
  color: var(--faint);
  background: var(--surface-soft);
}

.calendar-day.today {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
}

.day-number {
  font-size: 0.86rem;
  font-weight: 900;
}

.day-event,
.day-more {
  display: block;
  min-width: 0;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-more {
  background: var(--amber-soft);
  color: #92400e;
}

.event-list {
  display: grid;
  gap: 10px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 22px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: var(--surface-soft);
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.event-item.saved-event {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

.date-chip {
  width: 48px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--violet-soft);
  color: #5b21b6;
}

.date-month {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.event-body {
  min-width: 0;
}

.event-body h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.event-meta,
.event-notes {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.saved-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 800;
}

.event-actions {
  display: grid;
  gap: 6px;
}

.toolbox-panel {
  margin-top: 16px;
}

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

.tool-grid.compact .tool-card:nth-child(n + 7) {
  display: none;
}

.tool-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.tool-card strong {
  font-size: 0.9rem;
}

.tool-card span {
  padding: 3px 6px;
  border-radius: var(--radius);
  background: #e8efff;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.mode-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(4, 120, 87, 0.22);
  border-radius: var(--radius);
  background: #ecfdf5;
  color: var(--success);
  font-size: 0.76rem;
  line-height: 1.25;
}

.help-text {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.error-text {
  color: var(--danger);
  font-weight: 800;
}

.privacy-strip {
  margin-top: 16px;
  padding: 14px 16px;
  line-height: 1.5;
}

.setup-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.setup-dialog::backdrop {
  background: rgba(17, 24, 39, 0.45);
}

.setup-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.icon-button {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.delete-event {
  color: var(--danger);
  background: var(--danger-soft);
}

@media (max-width: 1060px) {
  .assistant-layout,
  .calendar-workspace,
  .settings-grid,
  .shared-list-workspace,
  .conversation-workspace {
    grid-template-columns: 1fr;
  }

  .assistant-hero {
    min-height: auto;
  }

  .shared-list-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shared-list-form {
    grid-template-columns: 1fr 1fr;
  }

  .timed-reminder-form,
  .account-row,
  .recipient-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .app-shell {
    display: block;
    padding-bottom: 74px;
  }

  .app-sidebar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 10;
    height: auto;
    padding: 8px;
    border-top: 1px solid var(--border);
    border-right: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  .brand-card,
  #installButton {
    display: none;
  }

  .app-nav {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }

  .app-tab {
    min-height: 48px;
    padding: 0 4px;
    text-align: center;
    font-size: 0.76rem;
  }

  .app-main {
    padding: 16px;
  }

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

  .topbar .text-button {
    width: 100%;
  }

  .assistant-tiles,
  .entry-tiles,
  .info-tiles,
  .list-tiles,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-messages {
    min-height: 300px;
  }

  .calendar-day {
    min-height: 78px;
    padding: 5px;
  }

  .day-event {
    display: block;
    padding: 2px 3px;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .calendar-day .day-event:nth-of-type(n + 3) {
    display: none;
  }

  .calendar-day.has-events {
    border-color: var(--accent);
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  }

  .calendar-day.has-events .day-number::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 4px;
    border-radius: 999px;
    background: var(--accent);
    vertical-align: middle;
  }

  .primary-action,
  .secondary-action,
  .text-button,
  .file-button {
    width: 100%;
  }

  .voice-actions {
    flex-direction: column;
  }

  .shared-list-picker,
  .shared-list-form,
  .shared-list-item,
  .conversation-fields,
  .timed-reminder-form,
  .account-row,
  .recipient-grid,
  .device-sync-row {
    grid-template-columns: 1fr;
  }

  .account-actions {
    flex-direction: column;
  }

  .shared-list-header,
  .conversation-card-header {
    flex-direction: column;
  }

  .shared-list-item {
    align-items: stretch;
  }

  .delete-list-item {
    width: 100%;
  }
}
