/* Optimal Spawn Calculator — campfire pot style */

.osc-page {
  --osc-ink: #1c1914;
  --osc-ember: #c45c26;
  --osc-ember-soft: #e8a06a;
  --osc-pot: #2a2420;
  --osc-pot-rim: #5c4a3a;
  --osc-slot: #3a322c;
  --osc-cream: #f7f1e8;
  --osc-blue: #4aa3df;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 92, 38, 0.18), transparent 55%),
    linear-gradient(180deg, #f3eee6 0%, #e8e0d4 40%, #f6f3ee 100%);
  min-height: 100vh;
  color: var(--osc-ink);
}

.osc-main {
  /* Clear fixed navbar without burying the Pro kicker */
  padding: 6.75rem 0 2.5rem;
}

.osc-hero {
  max-width: 40rem;
  margin-bottom: 0.65rem;
}

.osc-page.has-results .osc-hero {
  margin-bottom: 0.45rem;
}

.osc-page.has-results .osc-lead {
  display: none;
}

.osc-page.has-results .osc-hero h1 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0;
}

.osc-kicker {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--osc-blue);
  margin-bottom: 0.25rem;
}

.osc-hero h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  margin-bottom: 0.35rem;
}

.osc-lead {
  font-size: 0.95rem;
  color: #5a534a;
  margin-bottom: 0;
  line-height: 1.4;
}

.osc-gate {
  border: none;
  border-radius: 16px;
  background: #fff;
  max-width: 32rem;
  margin: 0 auto;
}

.osc-gate-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #4aa3df, #2d7eb8);
  color: #fff;
  font-size: 1.35rem;
}

.osc-controls {
  border: 1px solid #f0ebe3;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 0;
  /* Override global `.card { overflow: hidden }` so autocomplete can escape the card */
  overflow: visible !important;
  position: relative;
  z-index: 40;
  text-align: left;
  box-shadow: 0 1px 3px rgba(40, 28, 16, 0.06);
}

.osc-controls-body {
  padding: 1rem !important; /* p-4 */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  overflow: visible;
}

/* —— Row 1 —— */
.osc-row--primary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.osc-row-primary-left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  flex: 1 1 300px;
  min-width: 0;
}

.osc-poke-preview {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f3efe8;
  border: 1px solid #e2d9cc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.05rem;
  position: relative;
}

.osc-poke-preview-img {
  /* Override global `.card img { width:100%; height:200px; object-fit:cover }` */
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto;
}

.osc-poke-preview-img[hidden],
.osc-poke-preview-placeholder[hidden] {
  display: none !important;
}

.osc-poke-preview.is-empty .osc-poke-preview-placeholder {
  display: block;
}

.osc-poke-preview-placeholder {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ddd4c7;
}

.osc-inline-note {
  margin-top: 0.15rem;
}

.osc-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.375rem; /* gap-1.5 */
  min-width: 0;
  width: 100%;
}

.osc-field-label {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0.75rem; /* text-xs */
  font-weight: 700; /* font-bold */
  line-height: 1.25;
  color: #4a433a; /* text-gray-700-ish */
  text-align: left;
}

.osc-field--pokemon {
  position: relative;
  z-index: 50;
  overflow: visible;
  flex: 1 1 auto;
  max-width: 20rem; /* max-w-xs */
  width: 100%;
}

.osc-field--mode {
  flex: 0 0 auto;
  width: auto;
}

.osc-search-wrap {
  position: relative;
  width: 100%;
  z-index: 50;
  overflow: visible;
}

.osc-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 16rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d5cdc0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(40, 28, 16, 0.16);
  z-index: 60;
}

.osc-search-suggestions[hidden] {
  display: none !important;
}

.osc-search-suggestions li {
  margin: 0;
}

.osc-search-suggestions button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  color: var(--osc-ink);
  cursor: pointer;
}

.osc-search-suggestions button:hover,
.osc-search-suggestions button.is-active {
  background: rgba(74, 163, 223, 0.12);
  color: #1a5f8a;
}

.osc-field .form-control {
  width: 100%;
  min-height: 2.375rem;
  height: 2.375rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 8px;
  border: 1px solid #d5cdc0;
  background-color: #fff;
  color: var(--osc-ink);
}

.osc-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.osc-form-actions .btn {
  white-space: nowrap;
}

.osc-mode-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: #ebe4da;
  gap: 0.15rem;
}

.osc-mode-option {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.osc-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.osc-mode-option span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b6358;
  transition: background 0.15s ease, color 0.15s ease;
}

.osc-mode-option input:checked + span {
  background: #fff;
  color: var(--osc-ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.osc-mode-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.osc-mode-option.is-disabled span {
  box-shadow: none;
}

.osc-divider {
  height: 1px;
  width: 100%;
  background: #f0ebe3;
  margin: 0.125rem 0;
  border: 0;
}

/* —— Row 2 —— */
.osc-row--goals {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  min-width: 0;
}

.osc-goals-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 0.75rem;
  min-height: 1.75rem;
}

.osc-goals-header .osc-field-label {
  width: auto;
  padding-top: 0;
}

.osc-budget-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
}

.osc-budget-hint {
  position: absolute;
  top: calc(100% + 0.3rem);
  right: 0;
  z-index: 5;
  margin: 0;
  width: min(18rem, 70vw);
  text-align: right;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #8a3a12;
  pointer-events: none;
}

.osc-budget-hint[hidden] {
  display: none !important;
}

.osc-budget-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid #c4b8a8;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a433a;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(40, 28, 16, 0.06);
}

.osc-budget-badge strong {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--osc-ink);
}

.osc-budget-badge.is-partial {
  background: rgba(74, 163, 223, 0.14);
  border-color: #4aa3df;
  color: #1a5f8a;
}

.osc-budget-badge.is-partial strong {
  color: #1a5f8a;
}

.osc-budget-badge.is-full {
  background: rgba(196, 92, 38, 0.14);
  border-color: #c45c26;
  color: #8a3a12;
}

.osc-budget-badge.is-full strong {
  color: #8a3a12;
}

.osc-goals-tools {
  min-width: 0;
}

.osc-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.osc-chip {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.osc-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.osc-chip span {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d5cdc0;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25;
  color: #5a534a;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.osc-chip input:checked + span {
  border-color: var(--osc-blue);
  background: rgba(74, 163, 223, 0.12);
  color: #1a5f8a;
}

.osc-chip.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.osc-chip.is-disabled span {
  background: #f3f1ed;
  color: #9a9288;
}

.osc-chip--free input:checked + span {
  border-color: #6aa84f;
  background: rgba(106, 168, 79, 0.12);
  color: #3d6b2c;
}

/* Advanced filters drawer */
.osc-advanced {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.osc-advanced-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ddd4c7;
  border-radius: 999px;
  background: #faf8f5;
  color: #5a534a;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.osc-advanced-toggle:hover {
  background: #fff;
  border-color: #cfc4b4;
  color: var(--osc-ink);
}

.osc-advanced-toggle.is-open {
  background: #fff;
  border-color: var(--osc-blue);
  color: #1a5f8a;
}

.osc-advanced-toggle-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.osc-advanced-chevron {
  font-size: 0.65rem;
  margin-left: 0.15rem;
  transition: transform 0.2s ease;
}

.osc-advanced-toggle.is-open .osc-advanced-chevron {
  transform: rotate(180deg);
}

.osc-advanced-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.22s ease, opacity 0.18s ease;
}

.osc-advanced-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.osc-advanced-panel[hidden] {
  display: none;
}

.osc-advanced-panel.is-open[hidden] {
  display: grid;
}

.osc-advanced-panel > .osc-row--selects {
  overflow: hidden;
  min-height: 0;
}

/* —— Row 3: 4 equal columns —— */
.osc-row--selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
  padding-top: 0.15rem;
}

.osc-row--selects .osc-field {
  width: 100%;
  min-width: 0;
}

.osc-select,
.osc-field .form-select {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 2.375rem;
  min-height: 2.375rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.25;
  border-radius: 8px;
  border: 1px solid #d5cdc0;
  background-color: #fff;
  color: var(--osc-ink);
}

.osc-select.is-disabled,
.osc-field .form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f3f1ed;
}

@media (max-width: 640px) {
  .osc-row--selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .osc-field--pokemon {
    max-width: none;
  }
}

.osc-alert {
  margin: 0.5rem 0;
}

/* Global styles.css sets `section { padding: 9rem 0 }` at ≥768px — that was the giant gap. */
.osc-page section {
  padding: 0 !important;
}

.osc-results {
  margin-top: 0.65rem;
  scroll-margin-top: 5.75rem;
  position: relative;
  z-index: 1;
}

.osc-results-tease {
  position: relative;
  min-height: 12rem;
}

.osc-results-tease.is-locked .osc-pot-layout {
  filter: blur(7px);
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
}

.osc-tease-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid #e5e0d8;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.osc-tease-card {
  width: min(22rem, 100%);
  text-align: center;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 12px 32px rgba(40, 28, 16, 0.12);
}

.osc-tease-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  font-size: 1.05rem;
}

.osc-tease-title {
  margin: 0 0 0.4rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--osc-ink, #2c241b);
}

.osc-tease-sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #6b6358;
}

.osc-tease-card .btn {
  font-weight: 700;
}

.osc-results-meta {
  color: #6b6358;
  font-size: 0.92rem;
}

.osc-pot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .osc-pot-layout {
    grid-template-columns: 1fr;
  }
}

.osc-pot-panel,
.osc-biome-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1rem 1.15rem 1.15rem;
  box-shadow: 0 8px 28px rgba(40, 28, 16, 0.08);
}

.osc-panel-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7166;
  margin-bottom: 0.75rem;
}

.osc-pot {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(196, 92, 38, 0.35), transparent 65%),
    linear-gradient(180deg, #3d342e 0%, var(--osc-pot) 55%, #1a1512 100%);
  border: 3px solid var(--osc-pot-rim);
  border-radius: 20px;
  padding: 1.25rem 1rem 1.35rem;
  overflow: hidden;
}

.osc-pot-glow {
  position: absolute;
  inset: auto 20% -20% 20%;
  height: 50%;
  background: radial-gradient(circle, rgba(232, 160, 106, 0.45), transparent 70%);
  pointer-events: none;
  animation: osc-flicker 3.2s ease-in-out infinite;
}

@keyframes osc-flicker {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.osc-base-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .osc-base-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.osc-seasoning-label {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--osc-ember-soft);
}

.osc-seasoning-label--top {
  margin-top: 0;
}

.osc-seasoning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .osc-seasoning-grid {
    grid-template-columns: 1fr;
  }
}

.osc-slot {
  background: var(--osc-slot);
  border: 1px solid rgba(255, 230, 200, 0.12);
  border-radius: 12px;
  padding: 0.65rem 0.6rem;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--osc-cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.osc-slot-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.osc-item-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: pixelated;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.osc-item-icon--placeholder {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
}

.osc-item-icon-link {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 4px;
}

.osc-item-icon-link:hover .osc-item-icon,
.osc-item-icon-link:focus-visible .osc-item-icon {
  outline: 2px solid rgba(255, 224, 184, 0.7);
  outline-offset: 1px;
}

.osc-berry-link,
.osc-item-link {
  color: #ffe0b8;
  text-decoration: underline;
  text-decoration-color: rgba(255, 224, 184, 0.45);
  text-underline-offset: 2px;
}

.osc-berry-link:hover,
.osc-berry-link:focus-visible,
.osc-item-link:hover,
.osc-item-link:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.osc-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.osc-benefit-badge {
  font-size: 0.68rem;
  line-height: 1.3;
  color: rgba(247, 241, 232, 0.88);
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 230, 200, 0.1);
}

.osc-slot--seasoning:not(.osc-slot--empty):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.osc-slot--empty {
  opacity: 0.55;
  border-style: dashed;
}

.osc-slot-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--osc-ember-soft);
}

.osc-slot-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--osc-ember);
  color: #fff;
}

.osc-slot-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.osc-slot-reason {
  font-size: 0.72rem;
  color: rgba(247, 241, 232, 0.7);
  line-height: 1.3;
}

.osc-cost {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.osc-cost--cheap {
  background: rgba(74, 163, 223, 0.25);
  color: #b8e0ff;
}

.osc-cost--medium {
  background: rgba(232, 160, 106, 0.25);
  color: #ffd7b0;
}

.osc-cost--expensive {
  background: rgba(220, 80, 80, 0.3);
  color: #ffc4c4;
}

.osc-note {
  margin-top: 0.85rem;
}

.osc-biome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  counter-reset: biome;
}

.osc-biome-list li {
  counter-increment: biome;
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #ebe4da;
}

.osc-biome-list li::before {
  content: counter(biome);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--osc-ember);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(196, 92, 38, 0.12);
  display: grid;
  place-items: center;
}

.osc-biome-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.osc-biome-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.75rem;
  color: #7a7166;
  grid-column: 2;
}

.osc-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.osc-btn-blue {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--osc-blue, #4aa3df);
  --bs-btn-border-color: var(--osc-blue, #4aa3df);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2d8fc9;
  --bs-btn-hover-border-color: #2d8fc9;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2479ad;
  --bs-btn-active-border-color: #2479ad;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--osc-blue, #4aa3df);
  --bs-btn-disabled-border-color: var(--osc-blue, #4aa3df);
  color: #fff;
  background-color: var(--osc-blue, #4aa3df);
  border-color: var(--osc-blue, #4aa3df);
  font-weight: 600;
}

.osc-btn-blue:hover,
.osc-btn-blue:focus {
  color: #fff;
  background-color: #2d8fc9;
  border-color: #2d8fc9;
}

.osc-empty {
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 0.5rem;
}

.osc-farm-add-btn {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(74, 163, 223, 0.18);
  color: #e8f4fc;
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.osc-farm-add-btn:hover:not(:disabled),
.osc-farm-add-btn:focus-visible {
  background: rgba(74, 163, 223, 0.32);
  border-color: rgba(74, 163, 223, 0.7);
  color: #fff;
  outline: none;
}

.osc-farm-add-btn:disabled {
  opacity: 0.75;
  cursor: default;
}

.osc-farm-add-btn.is-added {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(74, 222, 128, 0.55);
  color: #dcfce7;
}

.osc-farm-login-modal .modal-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
}

.osc-farm-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1080;
  max-width: min(92vw, 420px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
  text-align: center;
}

.osc-farm-toast.is-error {
  background: #991b1b;
}

