:root {
  color-scheme: light;
  --theme-bg: #f7a400;
  --theme-bg-soft: #fbd46d;
  --theme-surface: #ffffff;
  --theme-shadow: rgba(0, 0, 0, 0.25);
  --theme-text: #1f2933;
  --theme-text-soft: rgba(31, 41, 51, 0.75);
  --theme-accent: #f7a400;
  --theme-accent-dark: #c47c00;
  --text-main: #262626;
  --accent-dark: #c47c00;
  --radius-pill: 999px;
  font-family: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

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

/* buttonのデフォルトスタイルをリセット */
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* auth-panelはhiddenクラスの時だけ非表示 */
.auth-panel.hidden {
  display: none !important;
}

body.app-theme {
  margin: 0;
  background: linear-gradient(135deg, #FFAE00 0%, #FF8C00 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page::before {
  content: '';
  position: absolute;
  width: 100%;
  aspect-ratio: 1440 / 450;
  top: 0;
  left: 0;
  right: 0;
  background-image: url('/static/img/login-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .page::before {
    aspect-ratio: 390 / 265;
    background-image: url('/static/img/hero-bg-sp.svg');
  }
}

header {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media screen and (max-width: 1023px) {
  header {
    padding: 0 16px;
    height: 70px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #ffffff;
}

.brand-icon {
  width: clamp(40px, 7vw, 64px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

nav {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

header nav a,
.nav-actions a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px -4px rgba(255, 140, 0, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

header nav a:hover,
.nav-actions a:hover {
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(255, 140, 0, 0.5);
}

nav button {
  display: flex;
  align-items: center;
  padding: 0 50px 0 85px;
  height: 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  background-color: #FB6A02;
  border-radius: 34px;
  background-image: url('/static/img/icon_logout.svg');
  background-size: 50px 50px;
  background-position: 5px center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  nav button {
    padding: 0;
    width: 50px;
    height: 50px;
    background-size: 30px 30px;
    background-position: center;
    border-radius: 50%;
  }

  nav button span {
    display: none;
  }
}

/* ヒーローセクション */
.hero {
  padding-top: 146px;
  padding-bottom: 56px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 32px;
  }
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  aspect-ratio: 1440 / 450;
  top: 0;
  left: 0;
  right: 0;
  background-image: url('/static/img/login-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .hero::after {
    aspect-ratio: 390 / 265;
    background-image: url('/static/img/hero-bg-sp.svg');
  }
}

.hero-logo__wrap {
  position: relative;
  z-index: 10;
}

.hero-logo {
  width: 400px;
  height: 131px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .hero-logo {
    width: 230px;
    height: 76px;
  }
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  margin: 0;
  margin-top: 16px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

@media screen and (max-width: 1023px) {
  .hero-title {
    margin-top: 9px;
    font-size: 24px;
  }
}

.detail-header {
  text-align: center;
  display: grid;
  gap: clamp(0.4rem, 2vw, 0.8rem);
}

.detail-header p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.detail-header nav a {
  justify-self: center;
}

main.app-main,
main.detail-main {
  width: min(960px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  flex: 1;
}

main.detail-main {
  padding-top: 140px;
}

@media screen and (max-width: 1023px) {
  main.detail-main {
    padding-top: 90px;
  }
}


.site-footer {
  margin-top: auto;
  padding: 1.2rem clamp(1rem, 4vw, 2.4rem);
  background: linear-gradient(120deg, #f7a400, #f97316);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.site-footer nav {
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.site-footer nav a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}

.site-footer nav a:hover,
.site-footer nav a:focus {
  text-decoration: underline;
}

.site-footer .footer-divider {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero {
  width: min(960px, 100%);
  margin: clamp(1rem, 3vw, 1.6rem) auto clamp(1.6rem, 4vw, 2.4rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  display: grid;
  gap: clamp(0.6rem, 2vw, 1rem);
  color: #ffffff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.04em;
  font-family: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", "Noto Sans JP", sans-serif;
}

.hero .subtitle {
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(0.6rem, 2vw, 1rem);
}

.hero-logo__combined {
  width: clamp(260px, 50vw, 520px);
  max-width: 88vw;
  height: auto;
}

.hero-note {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.consult-feedback {
  margin-top: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.95rem;
  transition: opacity 160ms ease;
}

.consult-feedback.success {
  background: rgba(34, 197, 94, 0.35);
}

.consult-feedback.error {
  background: rgba(255, 84, 84, 0.35);
}

.search-card,
.detail-card,
.card,
.auth-card,
.result-block {
  background: var(--theme-surface);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px -36px var(--theme-shadow);
}

.search-card {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.search-card input {
  flex: 1 1 240px;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(249, 250, 251, 0.92);
  font-size: 1rem;
  color: var(--theme-text);
}

.search-card button {
  padding: 0.75rem 1.8rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #f9b52c, #f48a00);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px -18px var(--theme-shadow);
}

.cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--theme-text);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

/* アプリごとの背景グラデーション */
.card[data-app-id="review-reply-maker"] .card-image {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
}

.card[data-app-id="local-ingredient-recipe"] .card-image {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #6ee7b7 100%);
}

.card[data-app-id="customer-note-generator"] .card-image {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
}

.card[data-app-id="product-copy-writer"] .card-image {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #f9a8d4 100%);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFAE00 0%, #FF8C00 100%);
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.card h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #333333;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFAE00 0%, #FF8C00 100%);
  border-radius: 2px;
}

.card .title-link {
  color: #333333;
  text-decoration: none;
}

.card .title-link:hover,
.card .title-link:focus {
  opacity: 0.8;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.card .summary,
.card .description {
  margin: 0;
  color: #666666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.card-actions {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}

.card .cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #FFAE00 0%, #FF8C00 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.card .cta::after,
.cta-button::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

.card .cta:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

.card .cta:hover::after,
.cta-button:hover::after {
  transform: translateX(4px);
}

.placeholder,
.error {
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #666666;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.error {
  background: rgba(254, 238, 238, 0.95);
  border-color: rgba(252, 204, 204, 0.5);
  color: #c33;
}

.detail-card {
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  color: var(--theme-text);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.detail-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 1.4rem);
  margin: 0 auto clamp(1rem, 3vw, 1.6rem);
}

.detail-hero-logo__badge {
  width: clamp(90px, 14vw, 120px);
  height: clamp(90px, 14vw, 120px);
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--theme-accent-dark);
  box-shadow: 0 18px 38px -26px var(--theme-shadow);
}

.detail-hero-logo__wordmark {
  width: clamp(240px, 40vw, 320px);
  height: auto;
}

.app-meta h2 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--theme-text);
}

.app-meta .summary {
  margin: 0;
  font-weight: 600;
  color: var(--theme-text-soft);
}

.app-meta .description {
  margin: 0;
  color: rgba(31, 41, 55, 0.7);
  line-height: 1.7;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: rgba(31, 41, 55, 0.82);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.form-field select,
.auth-card input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 0.8);
  background: rgba(249, 250, 251, 0.94);
  font-size: 1rem;
  color: var(--theme-text);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.auth-card form > div {
  display: grid;
  gap: 0.4rem;
  margin-bottom: clamp(0.45rem, 1.2vw, 0.75rem);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.auth-card input:focus {
  outline: none;
  border-color: rgba(247, 164, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(247, 164, 0, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.form-actions button,
.auth-card button[type="submit"],
.auth-submit {
  width: 100%;
  padding: clamp(0.95rem, 2vw, 1.15rem);
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #FFAE00 0%, #FF8C00 100%);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.form-actions button:hover,
.auth-card button[type="submit"]:hover,
.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 164, 0, 0.18);
  color: var(--theme-accent-dark);
  font-weight: 600;
}

.result-block {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  color: var(--theme-text);
  display: grid;
  gap: 0.6rem;
}

.result-block.hidden {
  display: none;
}

.result-body {
  margin: 0;
  white-space: normal;
  word-break: break-word;
}

.result-body p {
  margin: 0 0 0.85rem;
}

.result-body ul,
.result-body ol {
  margin: 0 0 0.85rem 1.2rem;
  padding: 0 0 0 0.6rem;
}

.result-body pre {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.08);
  overflow-x: auto;
  white-space: pre;
}

.result-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(15, 23, 42, 0.08);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
}

.auth-panel {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.45);
  padding: 1.6rem;
  z-index: 30;
}

.auth-card {
  width: min(420px, 90vw);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  display: grid;
  gap: 1rem;
  color: var(--theme-text);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.auth-card form {
  display: grid;
  gap: 0;
}

.agreement-label {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: rgba(31, 41, 55, 0.85);
}

.agreement-label input {
  margin-top: 0.2rem;
}

.agreement-label a {
  color: var(--theme-text);
  font-weight: 700;
  text-decoration: underline;
}

.auth-card h2 {
  margin: 0;
  text-align: center;
  font-size: 1.4rem;
}

.auth-card .actions,
.auth-card .switch {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.switch-text {
  font-size: 0.88rem;
  color: var(--theme-text-soft);
}

.auth-card .switch button {
  border: none;
  background: transparent;
  color: var(--theme-accent-dark);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}


@media (min-width: 960px) {
  .hero,
  main.app-main,
  main.detail-main {
    padding-inline: 0;
  }
}

@media (max-width: 720px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .nav-actions a {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  .nav-actions button {
    flex-shrink: 0;
  }

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

@media (max-width: 640px) {
  .hero {
    gap: 0.75rem;
  }

  .hero-logo__combined,
  .detail-hero-logo__wordmark {
    width: min(82vw, 320px);
  }

  .concern-card {
    padding: 2rem 1.4rem 1.8rem;
  }

  .concern-card__icon {
    width: 160px;
    height: 160px;
    margin-top: -4.6rem;
  }

  .concern-card__icon::after {
    inset: 10px;
  }

  .concern-card__icon img {
    width: 96px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-logo__combined,
  .detail-hero-logo__wordmark {
    width: min(88vw, 300px);
  }

  .concern-card__icon {
    width: 140px;
    height: 140px;
    margin-top: -4.2rem;
  }

  .concern-card__icon::after {
    inset: 9px;
  }

  .concern-card__icon img {
    width: 80px;
  }
}

/* 印刷用スタイル */
@media print {
  /* 不要な要素を非表示 */
  header,
  footer,
  nav,
  form,
  .form-body,
  .form-actions,
  button,
  .app-meta,
  .detail-hero-logo,
  .result-header,
  .page::before {
    display: none !important;
  }

  /* 背景を白に */
  body,
  .page {
    background: white !important;
    color: black !important;
  }

  /* 結果ブロックを楽しげなデザインで表示 */
  .result-block {
    display: block !important;
    margin: 0;
    padding: 0;
  }

  .result-body {
    font-size: 14pt;
    line-height: 1.8;
    padding: 30px;
    border: 3px solid #FFAE00;
    border-radius: 12px;
    background: linear-gradient(to bottom, #fff9f0 0%, white 100%);
    color: #333;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* ヘッダー（となりのしごとん） */
  .result-body::before {
    content: "🍊 となりのしごとん";
    display: block;
    font-size: 16pt;
    font-weight: bold;
    color: #FF8C00;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFE0B3;
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
  }

  /* フッター（AI生成の表記） */
  .result-body::after {
    content: "このコンテンツは『となりのしごとん』のAIで生成されました";
    display: block;
    font-size: 10pt;
    color: #999;
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
  }

  /* ページ余白 */
  @page {
    margin: 2cm;
  }

  /* 見出しの改ページ制御 */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  /* コードブロックの改ページ制御 */
  pre {
    page-break-inside: avoid;
  }
}

/* 印刷ボタンのスタイル */
.print-button {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid #FFAE00;
  background: white;
  color: #FF8C00;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 0.9rem;
}

.print-button:hover {
  background: linear-gradient(135deg, #FFAE00 0%, #FF8C00 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
