html, body { background: #F4F5F0; }
body {
  font-family: 'Inter', sans-serif;
  color: #000;
  margin: 0;
  overflow: hidden;
}

.chat-page {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: min(100vw, 440px);
  display: flex;
  flex-direction: column;
  background: #F4F5F0;
  z-index: 1;
  transform: translateX(-50%) translateY(calc(var(--chat-keyboard-shift, 0px) * -1));
  transition: transform 0.12s ease;
}

.chat-header {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 64px;
  background: transparent;
  min-height: 64px;
}

.chat-header-title {
  font-family: 'Druk Wide', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 22px;
  text-align: center;
}

.chat-close,
.chat-new {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}
.chat-close { right: 12px; }
.chat-new { left: 12px; }
.chat-close svg, .chat-new svg { width: 20px; height: 20px; }
.chat-new:active { background: #ECECE5; }

.chat-debug {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 60px;
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  background: #FFFFFF;
  border: none;
  font: 600 12px/1 Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0.5px;
  color: #000;
  cursor: pointer;
  z-index: 20;
}
.chat-debug:active { background: #ECECE5; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  padding-bottom: var(--chat-input-h, 120px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
.chat-body > .chat-turn:first-child,
.chat-empty + .chat-turn {
  margin-top: calc(env(safe-area-inset-top, 0px) + 92px);
}

.chat-body-title {
  font-family: 'Druk Wide', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 22px;
  text-align: center;
  padding: 16px 64px;
  margin: 0;
}

.chat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: calc(100dvh - var(--chat-input-h, 120px) - env(safe-area-inset-top, 0px) - 56px);
  padding: calc(env(safe-area-inset-top, 0px) + 44px) 16px 40px;
  gap: 14px;
  box-sizing: border-box;
}
.chat-empty-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF066;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}
.chat-empty-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.chat-empty-title {
  font-family: 'Druk Wide', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 26px;
}
.chat-empty-sub {
  font-size: 14px;
  color: #7E7E7E;
  line-height: 20px;
  max-width: 320px;
}
.chat-empty-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.chat-empty-action {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.1s, opacity 0.15s;
}
.chat-empty-action:active { transform: scale(0.94); opacity: 0.85; }
.chat-empty-action img {
  width: 32px;
  height: 32px;
  display: block;
  filter: invert(1);
}

.chat-msg-photo {
  padding: 0 !important;
  background: transparent !important;
  max-width: 240px !important;
}
.chat-msg-photo img {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.ofc-card {
  background: #FFF;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}
.ofc-name { font-weight: 600; font-size: 15px; line-height: 20px; }
.ofc-brand { font-size: 12px; color: #7E7E7E; margin-top: 2px; }
.ofc-grades { display: flex; gap: 6px; }
.ofc-grade, .ofc-nova {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px; letter-spacing: 0.4px;
}
.ofc-grade { background: #ECECE5; color: #000; }
.ofc-grade-a { background: #2E8B57; color: #FFF; }
.ofc-grade-b { background: #7BB342; color: #FFF; }
.ofc-grade-c { background: #FFC400; color: #000; }
.ofc-grade-d { background: #FB8C00; color: #FFF; }
.ofc-grade-e { background: #E53935; color: #FFF; }
.ofc-nova { background: #ECECE5; color: #000; }
.ofc-nova-1 { background: #C8E6C9; }
.ofc-nova-2 { background: #FFE082; }
.ofc-nova-3 { background: #FFAB91; }
.ofc-nova-4 { background: #EF9A9A; color: #B71C1C; }
.ofc-row { display: flex; justify-content: space-between; font-size: 13px; }
.ofc-macros { display: flex; gap: 14px; font-size: 13px; color: #444; }
.ofc-code { font-size: 11px; color: #A1A09F; letter-spacing: 0.5px; }
.ofc-rescan {
  margin-top: 4px;
  align-self: stretch;
  background: #000;
  color: #FFF;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.ofc-rescan:active { opacity: 0.85; }

.chat-cam-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.chat-cam-overlay[hidden] { display: none; }
.chat-cam-video {
  width: 100%; height: 100%; object-fit: cover;
  background: #000;
}
.chat-cam-close {
  position: absolute; top: calc(env(safe-area-inset-top, 0px) + 14px); right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.chat-cam-hint {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  left: 50%; transform: translateX(-50%);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.55); color: #FFF;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  white-space: nowrap;
  z-index: 2;
}
.chat-cam-shutter {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 32px);
  left: 50%; transform: translateX(-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid #FFF;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}
.chat-cam-shutter-inner {
  display: block;
  width: 56px; height: 56px; border-radius: 50%;
  background: #FFF;
  transition: transform 0.1s;
}
.chat-cam-shutter:active .chat-cam-shutter-inner { transform: scale(0.88); }

#chatNutriCamFrame {
  position: fixed; inset: 0; z-index: 200;
  width: 100%; height: 100%;
  border: 0; background: #000;
}
#chatNutriCamFrame[hidden] { display: none; }

/* Chat turn — user query bubble + AI result block */
.chat-turn {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-msg-user {
  align-self: flex-end;
  max-width: 80%;
  padding: 10px 14px;
  background: #000;
  color: #FFF;
  border-radius: 18px 18px 4px 18px;
  font-size: 15px;
  line-height: 20px;
  word-wrap: break-word;
}
.chat-msg-assistant {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg-text {
  font-size: 14px;
  color: #7E7E7E;
  line-height: 20px;
}
.chat-msg-text.error { color: #C0392B; }

/* AI assistant bubble — left-aligned, light surface, mirrors .chat-msg-user */
.chat-msg-bot {
  align-self: flex-start;
  max-width: 80%;
  padding: 10px 14px;
  background: #FFFFFF;
  color: #000;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
  line-height: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.chat-msg-bot:has(> .ofc-card) {
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 100%;
}

.chat-ing-chips { white-space: normal; }
.chat-ing-chips-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7E7E7E;
  margin-bottom: 8px;
}
.chat-ing-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-kcal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: #FFF066;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  width: fit-content;
}

.chat-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7E7E7E;
  font-size: 14px;
}
.chat-loading-dots {
  display: inline-flex;
  gap: 4px;
}
.chat-loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7E7E7E;
  animation: chatDot 1s ease-in-out infinite;
}
.chat-loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-loading-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Recipe list inside chat result — same layout as home list-view */
.chat-recipes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-recipes-list .rcard-list {
  background: #FFF;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.chat-recipes-list .rcard-list-img {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-recipes-list .rcard-list-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-recipes-list .rcard-list-name {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-recipes-list .rcard-list-meta {
  color: #7E7E7E;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
@media (min-width: 375px) {
  .chat-recipes-list .rcard-list-name { font-size: 16px; }
}

/* Combo groups: each group is 2-3 cards joined by visible "+" inside;
   multiple groups stacked vertically with extra gap so the user sees them
   as alternative options. */
.chat-combos-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chat-recipes-list.chat-recipe-combo {
  gap: 4px;
}
.chat-recipe-plus {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #1A1A1A;
  padding: 2px 0;
}

.chat-combo-summary {
  align-self: flex-start;
  margin-top: 4px;
  padding: 6px 12px;
  background: #ECECE5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: #1A1A1A;
}

.chat-nutrient-summary {
  align-self: flex-start;
  margin-top: 4px;
  padding: 6px 12px;
  background: #ECECE5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #4A4A4A;
}

/* Meal-plan final turn: server splits the day into Breakfast/Lunch/Dinner
   sections, each with a heading "Label · 13:00 · ~600 kcal" and one card. */
.chat-meal-plan {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.chat-meal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-meal-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: #1A1A1A;
  letter-spacing: 0.02em;
}
.chat-meal-empty {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7E7E7E;
  padding: 8px 12px;
  background: #F4F5F0;
  border-radius: 12px;
}
.chat-meal-day {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.chat-meal-day-heading {
  font-family: 'Druk Wide', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.chat-meal-add-btn {
  align-self: flex-start;
  margin-top: 12px;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 22px;
  background: #000;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.chat-meal-add-btn:active { background: #1A1A1A; }
.chat-meal-add-btn.added { background: #2ECC71; }
@media (min-width: 441px) {
  .chat-meal-day-heading { font-size: 18px; line-height: 22px; }
  .chat-meal-add-btn { font-size: 15px; height: 46px; }
}

/* "More variations" — primary CTA under chat results. Black-on-white pattern
   matches the rest of the app (download buttons, send button, user bubble)
   so it reads unambiguously as a tappable button, not chat content. */
.chat-more-btn {
  align-self: flex-start;
  margin-top: 8px;
  height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 20px;
  background: #000;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.chat-more-btn:active { background: #1A1A1A; }
@media (min-width: 441px) {
  .chat-more-btn { font-size: 15px; height: 42px; }
}

/* Footer input bar — always on top of background and messages */
.chat-input-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
  background: transparent;
  z-index: 30;
  transition: padding 0.25s ease;
  box-sizing: border-box;
}
.chat-input-bar.is-focused,
.chat-input-bar:has(.chat-input-wrap.is-focused) {
  padding: 12px 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
}
.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 64px;
  background: #FFFFFF;
  border-radius: 22px;
  transition: gap 0.25s ease;
  overflow: hidden;
  filter: none;
}
.chat-input-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border-radius: 0;
  padding: 6px 8px 6px 16px;
  min-height: 64px;
  min-width: 0;
  transition: padding 0.25s ease;
  box-sizing: border-box;
  filter: none;
}
.chat-page.chat-has-content .chat-input-form {
  border-radius: 0;
  padding-left: 16px;
}
.chat-input-barcode {
  display: none;
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s;
}
.chat-page.chat-has-content .chat-input-barcode { display: none; }
.chat-input-barcode:active { transform: scale(0.94); }
.chat-input-barcode img {
  width: 28px;
  height: 28px;
  display: block;
}
.chat-input-wrap.is-focused { gap: 0; }
.chat-input-wrap.is-focused .chat-input-barcode {
  width: 0;
}
.chat-input-wrap.is-focused .chat-input-form {
  padding-left: 16px;
}
.chat-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  min-width: 0;
  resize: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  margin: 0;
  min-height: 52px;
  max-height: 180px;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 15px 0;
  -webkit-appearance: none;
  appearance: none;
  filter: none;
}
.chat-input::placeholder { color: #7E7E7E; }
.chat-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}
.chat-action-btn:disabled { background: #D9D9D3; cursor: default; }
.chat-action-btn svg { display: none; }
.chat-action-btn.chat-mode-mic .chat-icon-mic { display: block; }
.chat-action-btn.chat-mode-send .chat-icon-send { display: block; }
.chat-input-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F2F1EE;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: transform 0.1s, background 0.15s;
}
.chat-input-action:active { transform: scale(0.94); }
.chat-input-action.primary {
  width: 40px;
  height: 40px;
  background: #000;
}
.chat-action-btn.chat-mode-recording { background: #E74C3C; }
.chat-action-btn.chat-mode-recording .chat-icon-stop { display: block; }
.chat-action-btn.chat-mode-recording::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(231, 76, 60, 0.4);
  animation: chatPulse 1.2s ease-out infinite;
}
@keyframes chatPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.chat-no-results {
  font-size: 14px;
  color: #7E7E7E;
  padding: 8px 0;
}

.chat-relax-banner {
  font-size: 13px;
  line-height: 18px;
  color: #7E7E7E;
  background: #FFF7E6;
  border: 1px solid #F0E0B8;
  border-radius: 10px;
  padding: 8px 12px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-suggestion {
  display: inline-flex;
  align-items: center;
  max-width: 80%;
  padding: 10px 14px;
  background: #FFF066;
  color: #000;
  border: none;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  word-break: break-word;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.chat-suggestion:active {
  background: #F5E958;
}

.chat-refine-chips {
  margin-top: 4px;
  justify-content: flex-start;
}

@media (min-width: 441px) {
  .chat-header-title, .chat-body-title { font-size: 22px; line-height: 26px; }
  .chat-empty-title { font-size: 26px; line-height: 30px; }
  .chat-empty-sub, .chat-suggestion { font-size: 15px; }
  .chat-msg-user, .chat-msg-text { font-size: 15px; }
}

@media (min-width: 441px) {
  .chat-page {
    --chat-shell-max: 440px;
  }

  .chat-close,
  .chat-new {
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    width: 40px;
    height: 40px;
  }

  .chat-close {
    right: 12px;
  }

  .chat-new {
    left: 12px;
  }

  .chat-body {
    width: auto;
    max-width: none;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    gap: 24px;
  }

  .chat-body > .chat-turn:first-child,
  .chat-empty + .chat-turn {
    margin-top: calc(env(safe-area-inset-top, 0px) + 92px);
  }

  .chat-empty {
    min-height: calc(100dvh - var(--chat-input-h, 120px) - env(safe-area-inset-top, 0px) - 56px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .chat-empty-avatar {
    width: 72px;
    height: 72px;
  }

  .chat-empty-sub {
    max-width: 320px;
  }

  .chat-msg-user,
  .chat-msg-bot,
  .chat-suggestion {
    max-width: 80%;
  }

  .chat-msg-photo {
    max-width: 240px !important;
  }

  .ofc-card {
    max-width: 320px;
  }

  .chat-input-bar {
    display: block;
    padding: 12px 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .chat-input-bar.is-focused,
  .chat-input-bar:has(.chat-input-wrap.is-focused) {
    padding: 12px 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .chat-input-wrap {
    width: auto;
    max-width: none;
    border-radius: 22px;
  }

  .chat-input-form {
    padding-left: 16px;
    padding-right: 8px;
  }

  .chat-page.chat-has-content .chat-input-form,
  .chat-input-wrap.is-focused .chat-input-form {
    padding-left: 16px;
  }
}

@media (min-width: 900px) {
  .chat-page {
    --chat-shell-max: 440px;
  }

  .chat-body {
    padding-left: 16px;
    padding-right: 16px;
    gap: 24px;
  }

  .chat-empty-title {
    font-size: 26px;
    line-height: 30px;
  }

  .chat-empty-actions {
    margin-top: 28px;
  }

  .chat-msg-user,
  .chat-msg-bot,
  .chat-suggestion {
    max-width: 80%;
    font-size: 15px;
    line-height: 20px;
  }

  .chat-msg-text {
    font-size: 15px;
    line-height: 20px;
  }

  .chat-msg-photo {
    max-width: 240px !important;
  }

  .chat-recipes-list:not(.chat-recipe-combo) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .chat-recipes-list.chat-recipe-combo {
    max-width: none;
  }

  .chat-more-btn {
    height: 42px;
    border-radius: 20px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .chat-meal-add-btn {
    height: 46px;
    border-radius: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .chat-input-bar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .chat-input-bar.is-focused,
  .chat-input-bar:has(.chat-input-wrap.is-focused) {
    padding-left: 12px;
    padding-right: 12px;
  }
}
