﻿:root {
  --bg: #ffffff;
  --ink: #02162a;
  --ink-soft: #667085;
  --panel: #f6f7f9;
  --line: #e5e7eb;
  --top: #02162a;
    --dock-safe-space: 190px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 72px;
  background: var(--top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(2, 22, 42, 0.2);
}

.topbar-inner {
  height: 100%;
  width: min(980px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.progress-wrap {
  position: relative;
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
}

.progress-track,
.progress-fill {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
}

.progress-track {
  background: rgba(255, 255, 255, 0.18);
}

.progress-fill {
  right: auto;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
}

.progress-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: default;
  transition: transform 0.15s ease;
}

.dot.can-back {
  cursor: pointer;
}

.dot.can-back:hover {
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  border-color: #fff;
}

.step-counter {
  color: #fff;
  min-width: 68px;
  text-align: right;
}

#stepCurrent {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.step-total {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

.page {
  min-height: 100dvh;
  overflow-y: auto;
  padding: 92px 16px calc(var(--dock-safe-space) + env(safe-area-inset-bottom, 0px));
  scroll-padding-bottom: calc(var(--dock-safe-space) + env(safe-area-inset-bottom, 0px));
}

.chat-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.chat-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideUp 0.25s ease;
  scroll-margin-bottom: calc(var(--dock-safe-space) + 12px);
}

.avatar.bot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6dee8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}
.avatar.bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.message.user {
  justify-content: flex-end;
}

.message.user .bubble {
  background: #e9f3ff;
  border-top-right-radius: 6px;
}

.bubble {
  max-width: min(76ch, 80%);
  background: var(--panel);
  padding: 14px 18px;
  border-radius: 18px;
  border-top-left-radius: 6px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.selector-host {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  scroll-margin-bottom: calc(var(--dock-safe-space) + 12px);
}

.selector-host.image-options {
  width: 100%;
  display: block;
}

.option-btn {
  border: 1px solid #cfd5dc;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.option-btn:hover {
  border-color: #98a2b3;
}

.image-option-btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 12px;
}

.image-option-btn img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.image-option-btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.image-option-btn:hover img,
.image-option-btn:focus-visible img {
  transform: scale(1.16);
}

.image-option-btn:focus-visible {
  outline: 2px solid #c1121f;
  outline-offset: 2px;
}

.image-carousel {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.image-carousel-viewport {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.image-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #cfd5dc;
  background: #fff;
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: #98a2b3;
}
@media (max-width: 780px) {
  .image-option-btn img {
    height: 360px;
  }

  .image-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

.schedule-card {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(2, 22, 42, 0.08);
  scroll-margin-bottom: calc(var(--dock-safe-space) + 12px);
  overflow: hidden;
}

.agenda-header {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #02162a;
  padding: 16px 20px;
  color: #fff;
}

.agenda-header svg {
  flex-shrink: 0;
}

.agenda-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.agenda-subtitle {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.agenda-content {
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.agenda-now-pill {
  margin: 0 auto 16px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f6f7f9;
  color: #02162a;
  font-size: 0.9rem;
  font-weight: 600;
}

.agenda-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.calendar-month-label {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: #02162a;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.2;
}

.month-nav-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #e5e7eb;
  color: #1f2937;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px 10px;
  box-shadow: 0 4px 20px rgba(2, 22, 42, 0.08);
  margin-bottom: 14px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.calendar-weekdays span {
  text-align: center;
  padding: 6px 0;
  font-size: 0.74rem;
  color: #6b7280;
  font-weight: 600;
}

.times-label {
  margin: 0 0 8px;
  padding-left: 2px;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
}

.agenda-touch-hint {
  margin: 10px 0 2px;
  text-align: center;
  color: #6b7280;
  font-size: 0.86rem;
}
.schedule-hint {
  margin: 6px 0 10px;
  color: #b54708;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
}

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

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  align-items: center;
  justify-items: center;
}

.day-placeholder {
  width: 40px;
  height: 40px;
  display: block;
}

.day-btn {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.time-btn {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 12px 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  min-height: 46px;
  text-align: center;
}

.time-btn.selected,
.day-btn.selected {
  color: #fff;
  background: #02162a;
  box-shadow: 0 4px 12px rgba(2, 22, 42, 0.35), 0 0 0 2px rgba(2, 22, 42, 0.15);
}

.time-btn:disabled,
.day-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.schedule-actions {
  margin: 0 16px 12px;
  display: flex;
  gap: 8px;
}

#openConfirmBtn {
  flex: 1;
  min-height: 46px;
}

.back-step-btn {
  width: 46px;
  min-width: 46px;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.primary-btn,
.ghost-btn {
  height: 44px;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary-btn {
  border: 0;
  background: var(--ink);
  color: #fff;
}

.primary-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ghost-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: var(--ink);
}

.summary-list {
  margin: 8px 16px 16px;
  padding: 12px 14px;
  list-style: none;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  line-height: 1.65;
  font-size: 0.92rem;
}

.summary-list li {
  margin: 0;
  padding: 3px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.summary-list li:last-child {
  border-bottom: 0;
}

.input-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 16px;
  background: linear-gradient(to top, #fff 72%, rgba(255, 255, 255, 0));
}

.input-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  max-width: 520px;
  margin-left: auto;
}

.question-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.question-back-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.input-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}

.input-error {
  margin: 8px 4px 0;
  font-size: 0.82rem;
  color: #b42318;
  font-weight: 700;
}

.analysis-fx {
  margin: 8px 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.analysis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475467;
  opacity: 0.25;
  animation: analysisPulse 1s infinite ease-in-out;
}

.analysis-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.analysis-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes analysisPulse {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.chat-form {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  gap: 8px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  height: 56px;
  padding: 0 8px 0 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-form.select-only {
  border: 0;
  background: transparent;
  box-shadow: none;
  height: auto;
  padding: 0;
}

.text-answer-row,
.select-answer-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-form input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  font: inherit;
  color: var(--ink);
  background: transparent;
}

.select-open-btn {
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  color: #1f2937;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0 12px;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.select-open-btn:hover {
  border-color: rgba(15, 23, 42, 0.18);
}

.select-open-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(2, 22, 42, 0.15);
}

.select-open-btn svg {
  opacity: 0.55;
}

.answer-picker-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  max-height: 260px;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(2, 22, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 18px 34px rgba(2, 22, 42, 0.18);
  padding: 8px;
  z-index: 55;
}

.answer-item {
  width: 100%;
  border: 0;
  text-align: left;
  border-radius: 10px;
  background: transparent;
  color: #0f172a;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.answer-item:hover {
  background: #e9f2ff;
}

#sendBtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
}

#sendBtn:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.country-picker {
  position: relative;
  flex-shrink: 0;
}

.country-picker-btn {
  border: 1px solid #d0d7e2;
  border-radius: 999px;
  height: 38px;
  padding: 0 10px 0 6px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  background: #f8fafc;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.country-flag {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #d0d7e2;
  object-fit: cover;
  flex-shrink: 0;
}

.country-code-label {
  white-space: nowrap;
}

.country-caret {
  margin-left: auto;
  color: #667085;
}

.country-picker-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  width: 290px;
  max-height: 240px;
  overflow: auto;
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(2, 22, 42, 0.18);
  padding: 6px;
  z-index: 45;
}

.country-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.country-item:hover {
  background: #f1f5f9;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(2, 22, 42, 0.55);
  padding: 16px;
}

.modal-card {
  position: relative;
  width: min(520px, 96vw);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.modal-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  text-align: center;
}

.modal-head h3 {
  margin: 18px 0;
  text-align: center;
}

.icon-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-options {
  display: grid;
  gap: 8px;
  margin: 30px;
}

.modal-option {
  text-align: center;
  border: 1px solid #d4dbe4;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.modal.objective-mode {
  background: rgba(2, 22, 42, 0.78);
}

.modal.objective-mode .modal-card {
  width: min(920px, 96vw);
  min-height: min(72vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  padding: 26px;
}

.modal.objective-mode .modal-head {
  margin-bottom: 14px;
  text-align: center;
  padding-top: 44px;
}

.modal.objective-mode .modal-head h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  width: 100%;
  text-align: center;
}

.modal.objective-mode .modal-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 30px 30px;
}


.modal.objective-mode .modal-option {
  min-height: 64px;
  border-radius: 12px;
  border: 1px solid #cdd8e6;
  background: #f8fbff;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
}

.modal.objective-mode .modal-option:hover {
  background: #e8f1ff;
  border-color: #9db8de;
}

@media (max-width: 860px) {
  .modal.objective-mode .modal-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .modal.objective-mode .modal-options {
    grid-template-columns: 1fr;
  }
}

.confirm-card h3 {
  margin: 0 0 8px;
}

.confirm-card p {
  margin: 0;
  color: var(--ink-soft);
}

.confirm-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.success-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(160deg, #f8fafc, #ffffff);
}

.success-card {
  width: min(600px, 96vw);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(2, 22, 42, 0.08);
}
.success-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.success-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.success-brand-sub {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
}

.success-icon {
  margin: 0;
  font-size: 2rem;
}

.success-card h2 {
  margin: 6px 0;
}

.countdown-grid {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 8px;
}

.countdown-grid div {
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  background: #f8fafc;
  padding: 10px;
  text-align: center;
}

.countdown-grid strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.countdown-grid span {
  color: #6b7280;
  font-size: 0.85rem;
  text-transform: lowercase;
}

.status-line {
  color: var(--green);
  font-weight: 800;
  margin: 10px 0;
}

.status-line span {
  color: inherit;
}

.status-pending {
  color: #667085;
}

.status-success {
  color: var(--green);
}

.status-error {
  color: #b42318;
}

.meeting-link-box {
  margin-top: 14px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px;
}

.meeting-link-box p {
  margin: 0 0 6px;
  color: var(--ink-soft);
}

.meeting-link-box a {
  color: #0f4d91;
  font-weight: 700;
  text-decoration: none;
}

.final-notice {
  margin-top: 14px;
  color: #0f4d91;
  font-weight: 700;
}

.objective-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #f8fafc, #ffffff);
  display: grid;
  place-items: center;
  padding: 24px;
}

.objective-inner {
  width: min(960px, 96vw);
  min-height: 72vh;
  border: 1px solid #dbe5f1;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 22, 42, 0.12);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.objective-question {
  margin: 0 0 18px;
  text-align: center;
  color: #0f172a;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}

.objective-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.objective-option {
  min-height: 64px;
  border-radius: 12px;
  border: 1px solid #cdd8e6;
  background: #f8fbff;
  color: #0f172a;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 10px 12px;
  cursor: pointer;
}

.objective-option:hover {
  background: #e8f1ff;
  border-color: #9db8de;
}

.hidden {
  display: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  :root { --dock-safe-space: 210px; }
  .topbar { height: 66px; }
  .page { padding-top: 84px; }
  #stepCurrent { font-size: 1.45rem; }
  .step-total { display: none; }
  .bubble { max-width: 90%; }
  .countdown-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }

  .chat-form {
    height: 52px;
    gap: 6px;
    padding: 0 8px 0 10px;
  }

  .text-answer-row {
    gap: 6px;
  }

  #sendBtn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 1px;
    margin-left: -5px;
  }

  .country-picker-btn {
    min-width: 46px;
    width: 46px;
    height: 34px;
    padding: 0 4px;
    gap: 2px;
    justify-content: center;
  }

  .country-flag {
    width: 20px;
    height: 15px;
  }

  .country-code-label {
    display: none;
  }

  .country-caret {
    margin-left: 0;
    font-size: 0.7rem;
  }
}

@media (max-width: 430px) {
  .chat-form {
    padding: 0 7px 0 8px;
  }

  .country-picker-btn {
    min-width: 42px;
    width: 42px;
  }
}
