/* היום של אדם — design system
   Visual language taken from the app icon: a watercolor portrait of Adam
   under a blue sky with green leaves. Warm, calm, generous spacing. */

@media (prefers-color-scheme: dark) {
  /* The app is intentionally light-only (bedtime paper/watercolor feel). */
}

:root {
  --color-bg: #FBF7EE;
  --color-card: #FFFFFF;
  --color-sky: #7FB8E0;
  --color-sky-deep: #3F7CAC;
  --color-leaf: #8CBF5E;
  --color-sun: #F6C85F;
  --color-ink: #2B3440;
  --color-muted: #6B7280;
  --color-line: #EADFC8;
  --color-danger: #B0584B;

  --radius-card: 24px;
  --radius-control: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px rgba(43, 52, 64, 0.10);
  --shadow-soft: 0 4px 14px rgba(43, 52, 64, 0.08);

  --font-heading: 'Varela Round', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Assistant', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  direction: rtl;
}

body {
  min-height: 100vh;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 55% at 50% -12%, rgba(127, 184, 224, 0.38), transparent 60%),
    radial-gradient(ellipse 130% 50% at 50% 112%, rgba(140, 191, 94, 0.22), transparent 62%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea {
  font-family: inherit;
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
  color: var(--color-ink);
}

p {
  margin: 0;
}

a {
  color: var(--color-sky-deep);
}

:focus-visible {
  outline: 3px solid var(--color-sun);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout shell ---------- */

#app {
  max-width: 520px;
  margin: 0 auto;
  min-height: 100vh;
  padding: calc(var(--space-3) + var(--safe-top)) calc(var(--space-3) + var(--safe-right)) calc(var(--space-5) + var(--safe-bottom)) calc(var(--space-3) + var(--safe-left));
  position: relative;
}

.screen {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: screen-in 0.35s ease both;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.screen-centered {
  min-height: calc(100vh - var(--safe-top) - var(--safe-bottom) - var(--space-3) - var(--space-5));
  justify-content: center;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
}

.top-line {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

/* ---------- typography helpers ---------- */

.app-title {
  font-size: 30px;
  text-align: center;
}

.screen-title {
  font-size: 26px;
}

.screen-subtitle {
  color: var(--color-muted);
  font-size: 15px;
}

.helper-text {
  color: var(--color-muted);
  font-size: 15px;
  text-align: center;
}

.tagline {
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

/* ---------- buttons ---------- */

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  border-radius: var(--radius-control);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--color-sky-deep);
  color: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--color-sky-deep);
  border: 2px solid var(--color-sky-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--color-sky-deep);
  min-height: 44px;
  padding: 8px 12px;
  font-weight: 600;
}

.btn-danger-ghost {
  background: transparent;
  color: var(--color-danger);
  font-weight: 600;
}

.btn-icon {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
  flex: none;
}

.btn-icon.is-plain {
  background: transparent;
  box-shadow: none;
}

.btn-small {
  font-size: 14px;
  padding: 8px 14px;
}

.btn.is-loading {
  position: relative;
}

/* ---------- cards ---------- */

.card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

.card-soft {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: var(--space-3);
}

/* ---------- form fields ---------- */

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.field-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
}

.field-hint {
  font-size: 13px;
  color: var(--color-muted);
}

.text-input, .textarea {
  width: 100%;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-control);
  background: #FFFFFF;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--color-ink);
  transition: border-color 0.15s ease;
}

.text-input:focus, .textarea:focus {
  border-color: var(--color-sky-deep);
}

.textarea {
  resize: none;
  line-height: 1.6;
  overflow: hidden;
}

.field-error {
  min-height: 20px;
  color: var(--color-danger);
  font-size: 14px;
}

/* ---------- sign in ---------- */

.signin-hero {
  display: flex;
  justify-content: center;
  padding-top: var(--space-4);
}

.hero-circle {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 6px solid #FFFFFF;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ---------- home ---------- */

.hero-frame {
  border-radius: var(--radius-card);
  padding: var(--space-3);
  background: linear-gradient(180deg, rgba(127, 184, 224, 0.45), rgba(140, 191, 94, 0.18));
  display: flex;
  justify-content: center;
}

.hero-frame img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.saved-story-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.saved-story-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--color-line);
  flex: none;
}

.saved-story-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.saved-story-title {
  font-family: var(--font-heading);
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nudge-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

/* ---------- create ---------- */

.choice-row {
  display: flex;
  gap: var(--space-3);
}

.choice-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 132px;
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  padding: var(--space-3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.choice-card:active {
  transform: scale(0.98);
}

.choice-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(127, 184, 224, 0.25);
  color: var(--color-sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.record-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) 0;
}

.record-button {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--color-sky-deep);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.record-button::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid var(--color-sky);
  opacity: 0;
}

.record-button.is-recording::after {
  animation: record-pulse 1.8s ease-out infinite;
}

.timer-display {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}

.record-hint {
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

/* ---------- narrator toggle ---------- */

.toggle-row {
  display: flex;
  gap: var(--space-2);
}

.toggle-option {
  flex: 1 1 0;
  min-height: 48px;
  border-radius: var(--radius-control);
  border: 2px solid var(--color-line);
  background: #FFFFFF;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-option.is-active {
  border-color: var(--color-sky-deep);
  background: rgba(127, 184, 224, 0.18);
  color: var(--color-sky-deep);
}

/* ---------- style choices ---------- */

.style-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.style-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: right;
  background: var(--color-card);
  border: 2px solid transparent;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  min-height: 48px;
}

.style-option.is-selected {
  border-color: var(--color-sky-deep);
}

.style-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-line);
  flex: none;
  position: relative;
}

.style-option.is-selected .style-radio {
  border-color: var(--color-sky-deep);
}

.style-option.is-selected .style-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--color-sky-deep);
}

.style-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.style-copy-title {
  font-family: var(--font-heading);
  font-size: 18px;
}

.style-copy-desc {
  color: var(--color-muted);
  font-size: 14px;
}

/* ---------- loading scene ---------- */

.loading-scene {
  min-height: calc(100vh - var(--safe-top) - var(--safe-bottom) - var(--space-3) - var(--space-5));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-4);
}

.loading-orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--color-sun), var(--color-sky) 70%);
  animation: orb-breathe 2.4s ease-in-out infinite;
}

.loading-title {
  font-family: var(--font-heading);
  font-size: 22px;
}

.loading-subtitle {
  color: var(--color-muted);
  font-size: 15px;
}

/* ---------- making ---------- */

.making-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.making-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: var(--space-2) var(--space-3);
  min-height: 48px;
}

.making-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--color-line);
  flex: none;
}

.making-thumb-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(127, 184, 224, 0.18);
  color: var(--color-sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.making-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.making-label {
  font-weight: 600;
}

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

.making-status.is-failed {
  color: var(--color-danger);
}

/* ---------- preview ---------- */

.preview-cover {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.image-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-line);
  box-shadow: var(--shadow-soft);
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sky-deep);
  background: rgba(127, 184, 224, 0.15);
}

.image-slot-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 247, 238, 0.82);
  font-size: 14px;
  color: var(--color-sky-deep);
  font-weight: 600;
}

.redraw-btn {
  align-self: flex-start;
}

.title-input {
  font-family: var(--font-heading);
  font-size: 24px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 6px 2px;
  width: 100%;
}

.title-input:focus {
  border-bottom-color: var(--color-sky-deep);
}

.preview-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.preview-page-index {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.rewrite-btn {
  align-self: flex-start;
}

.revise-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.revise-row .btn {
  flex: 1 1 auto;
}

.saved-banner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}

/* ---------- reading mode ---------- */

.reading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 55% at 50% -12%, rgba(127, 184, 224, 0.32), transparent 60%),
    radial-gradient(ellipse 130% 50% at 50% 112%, rgba(140, 191, 94, 0.2), transparent 62%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: calc(var(--space-3) + var(--safe-top)) calc(var(--space-4) + var(--safe-right)) calc(var(--space-4) + var(--safe-bottom)) calc(var(--space-4) + var(--safe-left));
  touch-action: pan-y;
}

.reading-close {
  position: absolute;
  top: calc(var(--space-3) + var(--safe-top));
  left: calc(var(--space-3) + var(--safe-left));
  z-index: 5;
}

.reading-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-bottom: calc(96px + var(--safe-bottom));
}

/* Pin the per-screen content wrapper to the full content width. Without
   this, a flex column with align-items:center sizes it to its own content
   (the title/text), so a short cover title and a long page paragraph would
   each give the image below them a different width. */
.reading-content > .stack {
  width: 100%;
}

.reading-cover-title {
  font-family: var(--font-heading);
  font-size: 28px;
}

.reading-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.reading-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  background: rgba(127, 184, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sky-deep);
}

.reading-text {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.8;
  color: var(--color-ink);
}

.reading-end-title {
  font-family: var(--font-heading);
  font-size: 32px;
}

.reading-navbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) calc(var(--space-4) + var(--safe-right)) calc(var(--space-3) + var(--safe-bottom)) calc(var(--space-4) + var(--safe-left));
}

.reading-nav-btn {
  width: 56px;
  height: 56px;
  min-height: 56px;
}

.reading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.reading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-line);
}

.reading-dot.is-active {
  background: var(--color-sky-deep);
}

/* ---------- library ---------- */

.library-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.library-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-align: right;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 48px;
  color: var(--color-ink);
  position: relative;
}

.library-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-line);
}

.library-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(127, 184, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sky-deep);
}

.library-card-body {
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.library-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.library-card-date {
  font-size: 12px;
  color: var(--color-muted);
}

.library-card-source {
  font-size: 12px;
  color: var(--color-muted);
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.badge-draft {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-sun);
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.empty-state {
  text-align: center;
  color: var(--color-muted);
  padding: var(--space-6) var(--space-3);
}

/* ---------- action sheet ---------- */

.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 52, 64, 0.35);
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sheet {
  width: 100%;
  max-width: 520px;
  background: var(--color-card);
  border-radius: 24px 24px 0 0;
  padding: var(--space-4) var(--space-3) calc(var(--space-4) + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  animation: sheet-in 0.25s ease both;
}

.sheet-title {
  font-family: var(--font-heading);
  font-size: 18px;
  text-align: center;
  margin-bottom: var(--space-1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-action {
  width: 100%;
  min-height: 48px;
  border: none;
  background: transparent;
  border-radius: var(--radius-control);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
}

.sheet-action:active {
  background: rgba(127, 184, 224, 0.15);
}

.sheet-action.is-danger {
  color: var(--color-danger);
}

/* ---------- profile ---------- */

.profile-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.photo-preview-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.photo-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(127, 184, 224, 0.15);
  flex: none;
}

.photo-preview-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(127, 184, 224, 0.15);
  color: var(--color-sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.photo-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1 1 auto;
}

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

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--space-4) + var(--safe-bottom));
  transform: translate(-50%, 12px);
  background: var(--color-ink);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  max-width: calc(100% - 32px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
  box-shadow: var(--shadow-card);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- animations ---------- */

@keyframes screen-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes record-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes sheet-in {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- small screens ---------- */

@media (max-width: 360px) {
  .app-title {
    font-size: 26px;
  }
  .record-button {
    width: 112px;
    height: 112px;
  }
}
