/**
 * fishing-app.css
 * ---------------------------------------------------------------------------
 * Shared styles for the Fishing Conditions App widgets:
 *   #fca-tide-chart-root, #fca-spot-finder-root, #fca-fish-id-root
 *
 * Design system (kept self-contained / namespaced under .fca- so it doesn't
 * leak into or fight with whatever WordPress theme this is embedded in):
 *
 *   --fca-navy     #0B3954   deep water / headings / primary chrome
 *   --fca-ink      #1C2B33   body text
 *   --fca-sand     #E8DCC8   card backgrounds, low-contrast fills
 *   --fca-paper    #FAF8F4   page-level widget background
 *   --fca-seafoam  #5B9A8B   "good/hot" signal, rising accents
 *   --fca-coral    #D9643A   warnings, falling/closed signal
 *   --fca-line     #D8CDB8   hairline borders on sand
 *
 * Type: system UI stacks only (no webfonts) since this loads inside an
 * arbitrary WordPress theme on a shared host - reliability over flourish.
 * Differentiation comes from weight/spacing/size, not custom fonts.
 * ---------------------------------------------------------------------------
 */

.fca-widget-root {
  --fca-navy: #0B3954;
  --fca-ink: #1C2B33;
  --fca-sand: #E8DCC8;
  --fca-paper: #FAF8F4;
  --fca-seafoam: #5B9A8B;
  --fca-coral: #D9643A;
  --fca-line: #D8CDB8;

  box-sizing: border-box;
  max-width: 720px;
  margin: 1.5em 0;
  background: var(--fca-paper);
  color: var(--fca-ink);
  border: 1px solid var(--fca-line);
  border-radius: 10px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.fca-widget-root *,
.fca-widget-root *::before,
.fca-widget-root *::after {
  box-sizing: inherit;
}

.fca-widget-root button {
  font-family: inherit;
}

/* ---- Header bar shared across widgets ----------------------------------- */
.fca-header {
  background: var(--fca-navy);
  color: var(--fca-paper);
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fca-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.fca-header .fca-subtitle {
  margin: 0;
  font-size: 12px;
  opacity: 0.75;
}

.fca-body {
  padding: 16px 18px 20px;
}

/* ---- Generic states ------------------------------------------------------- */
.fca-loading,
.fca-empty,
.fca-error,
.fca-locked {
  padding: 28px 18px;
  text-align: center;
  font-size: 14px;
  color: var(--fca-ink);
}

.fca-error {
  color: var(--fca-coral);
  font-weight: 600;
}

.fca-locked {
  background: var(--fca-sand);
}

.fca-locked .fca-upgrade-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--fca-navy);
  color: var(--fca-paper);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

.fca-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--fca-line);
  border-top-color: var(--fca-navy);
  border-radius: 50%;
  animation: fca-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

@media (prefers-reduced-motion: reduce) {
  .fca-spinner { animation: none; }
  .fca-widget-root * { transition: none !important; animation-duration: 0.001ms !important; }
}

/* ---- Location bar (lat/lng picker shared by tide-chart + spot-finder) ---- */
.fca-locbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.fca-locbar input[type="text"] {
  flex: 1;
  min-width: 140px;
  padding: 9px 11px;
  border: 1px solid var(--fca-line);
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  color: var(--fca-ink);
}

.fca-locbar button,
.fca-btn {
  padding: 9px 14px;
  border: none;
  border-radius: 6px;
  background: var(--fca-navy);
  color: var(--fca-paper);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.fca-locbar button:hover,
.fca-btn:hover {
  background: #0e4a6e;
}

.fca-locbar button:disabled,
.fca-btn:disabled {
  background: var(--fca-line);
  color: #8a8275;
  cursor: not-allowed;
}

.fca-btn-secondary {
  background: transparent;
  color: var(--fca-navy);
  border: 1px solid var(--fca-navy);
}

.fca-btn-secondary:hover {
  background: rgba(11, 57, 84, 0.06);
}

/* ---- Tide chart specifics ------------------------------------------------ */
.fca-tide-now {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.fca-tide-now .fca-height {
  font-size: 34px;
  font-weight: 800;
  color: var(--fca-navy);
  line-height: 1;
}

.fca-tide-now .fca-height-unit {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 4px;
}

.fca-tide-now .fca-stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fca-stage-pill.fca-rising {
  background: rgba(91, 154, 139, 0.16);
  color: var(--fca-seafoam);
}

.fca-stage-pill.fca-falling {
  background: rgba(217, 100, 58, 0.14);
  color: var(--fca-coral);
}

.fca-tide-meta {
  font-size: 12px;
  color: #6b6356;
  margin: 0 0 14px;
}

.fca-tide-chart-svg-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--fca-paper) 100%);
  border: 1px solid var(--fca-line);
}

.fca-tide-chart-svg-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.fca-tide-wave-fill {
  fill: rgba(91, 154, 139, 0.14);
}

.fca-tide-wave-line {
  fill: none;
  stroke: var(--fca-navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fca-tide-now-marker {
  stroke: var(--fca-coral);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
}

.fca-tide-now-dot {
  fill: var(--fca-coral);
  stroke: var(--fca-paper);
  stroke-width: 1.5;
}

.fca-tide-axis-label {
  font-size: 10px;
  fill: #8a8275;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fca-hilo-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--fca-line);
}

.fca-hilo-item {
  flex: 1 1 70px;
  text-align: center;
  font-size: 12px;
}

.fca-hilo-item .fca-hilo-type {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fca-navy);
}

.fca-hilo-item .fca-hilo-height {
  font-size: 16px;
  font-weight: 700;
  margin: 2px 0;
}

.fca-hilo-item .fca-hilo-time {
  color: #6b6356;
}

/* ---- Spot finder specifics ------------------------------------------------ */
.fca-timeline-bar {
  margin: 14px 0 18px;
}

.fca-timeline-bar input[type="range"] {
  width: 100%;
  accent-color: var(--fca-navy);
}

.fca-timeline-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b6356;
  margin-top: 4px;
}

.fca-timeline-label .fca-timeline-now-time {
  font-weight: 700;
  color: var(--fca-navy);
}

.fca-spot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fca-spot-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  background: #fff;
}

.fca-spot-rank {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  background: var(--fca-sand);
  color: var(--fca-navy);
  flex-shrink: 0;
}

.fca-spot-info {
  flex: 1;
  min-width: 0;
}

.fca-spot-name {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fca-spot-explain {
  font-size: 12px;
  color: #6b6356;
  margin: 0;
}

.fca-score-badge {
  flex-shrink: 0;
  min-width: 56px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fca-score-hot {
  background: rgba(91, 154, 139, 0.18);
  color: #2f6354;
}

.fca-score-good {
  background: rgba(91, 154, 139, 0.10);
  color: #3f7a6a;
}

.fca-score-fair {
  background: var(--fca-sand);
  color: #7a6a3f;
}

.fca-score-slow {
  background: rgba(217, 100, 58, 0.10);
  color: #a14c2a;
}

.fca-spot-detail {
  margin-top: 10px;
  padding: 12px;
  background: var(--fca-sand);
  border-radius: 8px;
  font-size: 12px;
}

.fca-spot-detail .fca-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.fca-spot-detail .fca-breakdown-row:last-child {
  border-bottom: none;
}

/* ---- Fish ID specifics ----------------------------------------------------- */
.fca-upload-zone {
  border: 2px dashed var(--fca-line);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.fca-upload-zone:hover,
.fca-upload-zone.fca-dragover {
  border-color: var(--fca-seafoam);
  background: rgba(91, 154, 139, 0.05);
}

.fca-upload-zone input[type="file"] {
  display: none;
}

.fca-upload-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.fca-upload-hint {
  font-size: 12px;
  color: #6b6356;
  margin-top: 4px;
}

.fca-preview-img {
  max-width: 100%;
  max-height: 280px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 8px;
  border: 1px solid var(--fca-line);
}

.fca-fish-result {
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  margin-bottom: 10px;
}

.fca-fish-result.fca-top-match {
  border-color: var(--fca-seafoam);
  background: rgba(91, 154, 139, 0.05);
}

.fca-fish-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.fca-fish-common-name {
  font-weight: 800;
  font-size: 16px;
  margin: 0;
}

.fca-fish-sci-name {
  font-style: italic;
  font-size: 12px;
  color: #6b6356;
  margin: 1px 0 0;
}

.fca-fish-confidence {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--fca-navy);
  background: var(--fca-sand);
  padding: 3px 9px;
  border-radius: 999px;
}

.fca-fish-explainer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--fca-line);
  font-size: 13px;
  line-height: 1.5;
}

.fca-fish-reg-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--fca-sand);
  font-size: 12px;
}

.fca-fish-reg-box.fca-reg-stale {
  background: rgba(217, 100, 58, 0.08);
}

.fca-fish-reg-title {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--fca-navy);
  margin: 0 0 6px;
}

.fca-fish-reg-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.fca-fish-reg-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--fca-navy);
  font-weight: 600;
  text-decoration: underline;
  font-size: 12px;
}

.fca-fish-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: #6b6356;
  font-style: italic;
  line-height: 1.4;
}

.fca-fish-reset {
  margin-top: 14px;
}

/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 480px) {
  .fca-widget-root {
    font-size: 14px;
  }
  .fca-header {
    padding: 12px 14px;
  }
  .fca-body {
    padding: 14px;
  }
  .fca-tide-now .fca-height {
    font-size: 28px;
  }
  .fca-spot-card {
    flex-wrap: wrap;
  }
}

/* ---- Focus visibility (accessibility) ------------------------------------- */
.fca-widget-root button:focus-visible,
.fca-widget-root input:focus-visible,
.fca-widget-root a:focus-visible {
  outline: 2px solid var(--fca-seafoam);
  outline-offset: 2px;
}

/* ---- Ask the Captains chat widget ----------------------------------------- */
.fca-chat-log {
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0 12px;
  margin-bottom: 12px;
}

.fca-chat-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 88%;
}

.fca-chat-user {
  align-self: flex-end;
  align-items: flex-end;
}

.fca-chat-captain {
  align-self: flex-start;
}

.fca-chat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b6356;
}

.fca-chat-text {
  margin: 0;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.fca-chat-captain .fca-chat-text {
  background: var(--fca-sand);
  border-radius: 4px 12px 12px 12px;
}

.fca-chat-user .fca-chat-text {
  background: var(--fca-navy);
  color: var(--fca-paper);
  border-radius: 12px 4px 12px 12px;
}

.fca-chat-thinking .fca-chat-text {
  opacity: 0.7;
}

.fca-chat-input-row {
  display: flex;
  gap: 8px;
}

.fca-chat-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--fca-ink);
}

.fca-chat-input:focus {
  outline: none;
  border-color: var(--fca-seafoam);
}

.fca-chat-disclaimer {
  margin: 10px 0 0;
  font-size: 11px;
  color: #8a8275;
  font-style: italic;
}

/* ---- Logbook / sea time ---------------------------------------------------- */
.fca-seatime-wrap {
  background: var(--fca-sand);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}

.fca-seatime-heading {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fca-navy);
}

.fca-seatime-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.fca-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--fca-line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
}

.fca-progress-fill {
  height: 100%;
  background: var(--fca-seafoam);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.fca-seatime-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #6b6356;
  line-height: 1.4;
}

.fca-trip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fca-trip-card {
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.fca-trip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.fca-trip-date {
  font-weight: 700;
  font-size: 13px;
}

.fca-trip-hours {
  font-size: 12px;
  color: #6b6356;
}

.fca-approved-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--fca-seafoam);
  background: rgba(91, 154, 139, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
}

.fca-pending-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--fca-coral);
  background: rgba(217, 100, 58, 0.10);
  padding: 2px 8px;
  border-radius: 999px;
}

.fca-trip-meta {
  font-size: 12px;
  color: #6b6356;
  margin-bottom: 3px;
}

.fca-trip-catch {
  font-size: 12px;
  color: var(--fca-navy);
  font-weight: 600;
}

.fca-trip-approval-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: #6b6356;
}

.fca-trip-approval-note code {
  background: var(--fca-sand);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11px;
}

/* ---- Logbook form ---------------------------------------------------------- */
.fca-form-group {
  margin-bottom: 12px;
}

.fca-form-row {
  display: flex;
  gap: 12px;
}

.fca-form-row .fca-form-group {
  flex: 1;
}

.fca-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fca-navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fca-input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--fca-line);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--fca-ink);
}

.fca-input:focus {
  outline: none;
  border-color: var(--fca-seafoam);
}

.fca-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}


/* ---- Ask the Captains widget ---------------------------------------------- */
.fca-captain-chat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fca-chat-messages {
  min-height: 180px;
  max-height: 360px;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fca-chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fca-chat-msg.fca-msg-user {
  flex-direction: row-reverse;
}

.fca-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fca-navy);
  color: var(--fca-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.fca-msg-user .fca-chat-avatar {
  background: var(--fca-seafoam);
}

.fca-chat-bubble {
  max-width: 80%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  background: var(--fca-sand);
  color: var(--fca-ink);
}

.fca-msg-user .fca-chat-bubble {
  background: var(--fca-navy);
  color: var(--fca-paper);
  border-radius: 12px 12px 2px 12px;
}

.fca-chat-input-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--fca-line);
}

.fca-chat-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--fca-ink);
  resize: none;
}

.fca-chat-send {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: var(--fca-navy);
  color: var(--fca-paper);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-end;
}

.fca-chat-send:hover { background: #0e4a6e; }
.fca-chat-send:disabled { background: var(--fca-line); color: #8a8275; cursor: not-allowed; }

.fca-captain-loc-note {
  font-size: 11px;
  color: #6b6356;
  margin-top: 6px;
}

/* ---- Logbook widget ------------------------------------------------------- */
.fca-logbook-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--fca-line);
}

.fca-tab-btn {
  padding: 8px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 13px;
  font-weight: 600;
  color: #6b6356;
  cursor: pointer;
}

.fca-tab-btn.fca-active {
  color: var(--fca-navy);
  border-bottom-color: var(--fca-navy);
}

.fca-seatime-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.fca-seatime-card {
  background: var(--fca-sand);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.fca-seatime-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--fca-navy);
  line-height: 1;
}

.fca-seatime-label {
  font-size: 11px;
  color: #6b6356;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fca-seatime-progress {
  background: var(--fca-line);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin: 10px 0 4px;
}

.fca-seatime-bar {
  height: 100%;
  background: var(--fca-seafoam);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.fca-trip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fca-trip-card {
  border: 1px solid var(--fca-line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.fca-trip-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.fca-trip-date {
  font-weight: 700;
  font-size: 14px;
}

.fca-trip-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.fca-trip-badge.fca-approved {
  background: rgba(91, 154, 139, 0.16);
  color: #2f6354;
}

.fca-trip-badge.fca-pending {
  background: rgba(217, 100, 58, 0.12);
  color: #a14c2a;
}

.fca-trip-meta {
  font-size: 12px;
  color: #6b6356;
}

.fca-log-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fca-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fca-field-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--fca-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fca-field-group input,
.fca-field-group select,
.fca-field-group textarea {
  padding: 9px 11px;
  border: 1px solid var(--fca-line);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--fca-ink);
}

.fca-field-group textarea {
  resize: vertical;
  min-height: 60px;
}

.fca-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .fca-form-row { grid-template-columns: 1fr; }
  .fca-seatime-number { font-size: 22px; }
}
