/* Floating AI assistant — Aira advisor dog + chat panel */

:root {
  --farm-ai-fab-size: clamp(3.5rem, 10vw + 2rem, 4.5rem);
  --farm-ai-fab-svg: clamp(2.5rem, 8vw + 1.25rem, 3.25rem);
  --farm-ai-fab-gap: clamp(0.5rem, 2vw, 0.85rem);
  /* Panel fills most of the viewport so login activities stay readable */
  --farm-ai-panel-max-h: min(
    40rem,
    calc(100dvh - var(--farm-ai-fab-size) - var(--farm-ai-fab-gap) - 1.25rem - env(safe-area-inset-bottom, 0px)),
    92dvh,
    92vh
  );
  --farm-ai-panel-width-cap: min(
    26rem,
    calc(100vw - max(1rem, env(safe-area-inset-left, 0px)) - max(1rem, env(safe-area-inset-right, 0px)))
  );
}

.farm-ai-chat-root {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  font-family: ui-sans-serif, system-ui, "Inter", sans-serif;
  pointer-events: none;
  /* Keep FAB inside narrow notches */
  max-width: calc(100vw - max(0.75rem, env(safe-area-inset-left, 0px)) - max(0.75rem, env(safe-area-inset-right, 0px)));
}

.farm-ai-chat-root * {
  pointer-events: auto;
}

.farm-ai-chat-fab {
  position: relative;
  width: var(--farm-ai-fab-size);
  height: var(--farm-ai-fab-size);
  min-width: 44px;
  min-height: 44px;
  border: none;
  padding: 0;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(155deg, #f8fafc 0%, #e2e8f0 45%, #cbd5e1 100%);
  box-shadow:
    0 4px 24px rgba(15, 118, 110, 0.28),
    0 0 0 3px rgba(255, 255, 255, 0.94),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  animation: farm-ai-fab-float 3.2s ease-in-out infinite;
}

.dark .farm-ai-chat-fab {
  background: linear-gradient(155deg, #1e293b 0%, #334155 50%, #0f172a 100%);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(45, 212, 191, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.farm-ai-chat-fab:hover {
  transform: scale(1.08);
  animation-play-state: paused;
}

.farm-ai-chat-fab:active {
  transform: scale(0.96);
}

.farm-ai-chat-fab:focus-visible {
  outline: 3px solid #0d9488;
  outline-offset: 3px;
}

.farm-ai-chat-fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(13, 148, 136, 0.45);
  animation: farm-ai-ring-pulse 2s ease-out infinite;
  pointer-events: none;
}

.dark .farm-ai-chat-fab__ring {
  border-color: rgba(45, 212, 191, 0.4);
}

.farm-ai-chat-fab__character {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
}

/* Full-body SVG (taller viewBox): fit entire dog inside circular FAB */
.farm-ai-chat-fab__character svg {
  width: auto;
  height: min(94%, calc(var(--farm-ai-fab-size) * 0.94));
  max-width: 94%;
  max-height: 94%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.dark .farm-ai-chat-fab__character svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.55));
}

/* Whole-body: pacing / walking in place */
.farm-ai-char-bounce {
  animation: farm-ai-dog-walk 1.75s ease-in-out infinite;
  transform-origin: 50px 108px;
}

.farm-ai-char-shadow {
  animation: farm-ai-dog-shadow 1.75s ease-in-out infinite;
  transform-origin: 50px 112px;
}

/* Legs: alternating stride */
.farm-ai-char-leg-lf {
  animation: farm-ai-dog-leg-swing 0.75s ease-in-out infinite;
  transform-origin: 45px 88px;
}

.farm-ai-char-leg-rf {
  animation: farm-ai-dog-leg-swing 0.75s ease-in-out infinite reverse;
  transform-origin: 55px 88px;
}

.farm-ai-char-leg-lh {
  animation: farm-ai-dog-leg-swing 0.75s ease-in-out 0.12s infinite reverse;
  transform-origin: 44px 86px;
}

.farm-ai-char-leg-rh {
  animation: farm-ai-dog-leg-swing 0.75s ease-in-out 0.12s infinite;
  transform-origin: 56px 86px;
}

/* Thinking: head tilts & weighs options (glasses move with head) */
.farm-ai-char-head {
  animation: farm-ai-dog-think 5s ease-in-out infinite;
  transform-origin: 50px 44px;
}

.farm-ai-char-ears {
  animation: farm-ai-dog-alert 4s ease-in-out infinite;
  transform-origin: 50px 28px;
}

.farm-ai-char-eyes {
  animation: farm-ai-blink 4.2s ease-in-out infinite;
  transform-origin: 50px 40px;
}

.farm-ai-char-tail {
  animation: farm-ai-dog-tail-walk 1.1s ease-in-out infinite;
  transform-origin: 74px 72px;
}

/* Researching: tablet bobs while reading */
.farm-ai-char-research {
  animation: farm-ai-dog-read 2.3s ease-in-out infinite;
  transform-origin: 50px 85px;
}

/* Dependable wave / point gesture */
.farm-ai-char-gesture {
  animation: farm-ai-dog-wave 1.35s ease-in-out infinite;
  transform-origin: 74px 84px;
}

@keyframes farm-ai-fab-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes farm-ai-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes farm-ai-dog-walk {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(3px, -4px) rotate(0.8deg);
  }
  50% {
    transform: translate(0, -6px) rotate(0deg);
  }
  75% {
    transform: translate(-3px, -4px) rotate(-0.8deg);
  }
}

@keyframes farm-ai-dog-shadow {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.14;
  }
  50% {
    transform: scaleX(0.82);
    opacity: 0.09;
  }
}

@keyframes farm-ai-dog-leg-swing {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(1.5px);
  }
}

@keyframes farm-ai-dog-think {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  25% {
    transform: rotate(2.5deg);
  }
  50% {
    transform: rotate(-1.5deg);
  }
  75% {
    transform: rotate(2deg);
  }
}

@keyframes farm-ai-dog-alert {
  0%,
  100% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(-2deg);
  }
  66% {
    transform: rotate(1.5deg);
  }
}

@keyframes farm-ai-dog-read {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-3px) rotate(1.8deg);
  }
}

@keyframes farm-ai-dog-wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-26deg);
  }
  55% {
    transform: rotate(16deg);
  }
}

@keyframes farm-ai-dog-tail-walk {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(14deg);
  }
}

@keyframes farm-ai-blink {
  0%,
  45%,
  52%,
  100% {
    transform: scaleY(1);
  }
  48%,
  50% {
    transform: scaleY(0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .farm-ai-chat-fab,
  .farm-ai-chat-fab__ring,
  .farm-ai-char-bounce,
  .farm-ai-char-shadow,
  .farm-ai-char-leg-lf,
  .farm-ai-char-leg-rf,
  .farm-ai-char-leg-lh,
  .farm-ai-char-leg-rh,
  .farm-ai-char-head,
  .farm-ai-char-ears,
  .farm-ai-char-eyes,
  .farm-ai-char-tail,
  .farm-ai-char-research,
  .farm-ai-char-gesture {
    animation: none !important;
  }
}

/* Chat panel */
.farm-ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(var(--farm-ai-fab-size) + var(--farm-ai-fab-gap));
  width: var(--farm-ai-panel-width-cap);
  max-height: var(--farm-ai-panel-max-h);
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(12px);
  transform-origin: bottom right;
  animation: farm-ai-panel-in 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.dark .farm-ai-chat-panel {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(45, 212, 191, 0.25);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.farm-ai-chat-panel.farm-ai-chat-panel--hidden {
  display: none;
}

@keyframes farm-ai-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.farm-ai-chat-panel__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(120deg, #0d9488 0%, #0ea5e9 100%);
  color: #fff;
  flex-shrink: 0;
}

.farm-ai-chat-panel__header-text {
  min-width: 0;
  flex: 1;
}

.farm-ai-chat-panel__header-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.farm-ai-chat-panel__header-avatar svg {
  width: 1.55rem;
  height: auto;
  max-height: 2.35rem;
}

.farm-ai-chat-panel__header-avatar--dog {
  background: rgba(226, 232, 240, 0.55);
  box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.25) inset;
}

.dark .farm-ai-chat-panel__header-avatar--dog {
  background: rgba(51, 65, 85, 0.55);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.2) inset;
}

.farm-ai-chat-panel__title {
  font-weight: 700;
  font-size: clamp(0.8rem, 2.8vw, 0.9rem);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.farm-ai-chat-panel__subtitle {
  font-size: clamp(0.62rem, 2.2vw, 0.7rem);
  opacity: 0.9;
  margin-top: 0.1rem;
  overflow-wrap: anywhere;
}

.farm-ai-chat-panel__action {
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #fff;
  width: max(2rem, 44px);
  height: max(2rem, 44px);
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  flex-shrink: 0;
  touch-action: manipulation;
}

.farm-ai-chat-panel__action svg {
  width: 1rem;
  height: 1rem;
}

.farm-ai-chat-panel__action:hover {
  background: rgba(255, 255, 255, 0.35);
}

.farm-ai-chat-panel__close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: max(2rem, 44px);
  height: max(2rem, 44px);
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  flex-shrink: 0;
  touch-action: manipulation;
}

.farm-ai-chat-panel__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.farm-ai-chat-panel__body {
  display: flex;
  flex-direction: column;
  padding: clamp(0.65rem, 3vw, 1rem);
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.farm-ai-chat-panel__body > #farm-ai-default-intro,
.farm-ai-chat-panel__body > #farm-ai-login-welcome {
  flex: 0 0 auto;
  width: 100%;
}

.farm-ai-chat-bubble {
  padding: clamp(0.65rem, 3vw, 0.85rem) clamp(0.75rem, 3vw, 1rem);
  border-radius: 1rem 1rem 1rem 0.35rem;
  font-size: clamp(0.8rem, 2.8vw, 0.875rem);
  line-height: 1.5;
  max-width: 100%;
  animation: farm-ai-bubble-pop 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) both 0.1s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@keyframes farm-ai-bubble-pop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.farm-ai-chat-bubble--bot {
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
  color: #0f172a;
  border: 1px solid rgba(13, 148, 136, 0.18);
}

.dark .farm-ai-chat-bubble--bot {
  background: linear-gradient(135deg, #134e4a 0%, #1e3a5f 100%);
  color: #e2e8f0;
  border-color: rgba(45, 212, 191, 0.2);
}

.farm-ai-chat-bubble__text {
  margin: 0;
}

.farm-ai-chat-bubble__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  margin-bottom: 0.35rem;
}

.dark .farm-ai-chat-bubble__label {
  color: #5eead4;
}

.farm-ai-chat-typing {
  display: inline-flex;
  gap: 4px;
  margin-top: 0.5rem;
  padding: 0.35rem 0;
}

.farm-ai-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14b8a6;
  animation: farm-ai-dot 1.2s ease-in-out infinite;
}

.dark .farm-ai-chat-typing span {
  background: #2dd4bf;
}

.farm-ai-chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.farm-ai-chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes farm-ai-dot {
  0%,
  80%,
  100% {
    transform: scale(0.65);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Reserve scroll space so content isn’t trapped under the FAB on phones */
@media (max-width: 768px) {
  html.farm-ai-chat-present body {
    padding-bottom: calc(
      var(--farm-ai-fab-size) + var(--farm-ai-fab-gap) + 0.85rem + env(safe-area-inset-bottom, 0px)
    );
  }
}

/* Slightly tighter FAB on very narrow screens */
@media (max-width: 360px) {
  :root {
    --farm-ai-fab-size: clamp(3.25rem, 14vw, 3.75rem);
    --farm-ai-fab-svg: clamp(2.25rem, 11vw, 2.85rem);
  }
}

/* Short / landscape viewports: sheet-style panel */
@media (max-height: 520px) {
  :root {
    --farm-ai-panel-max-h: min(
      36rem,
      calc(100dvh - var(--farm-ai-fab-size) - 0.75rem - env(safe-area-inset-bottom, 0px)),
      90dvh,
      90vh
    );
  }

  .farm-ai-chat-panel:not(.farm-ai-chat-panel--hidden) {
    position: fixed;
    left: max(0.5rem, env(safe-area-inset-left, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    max-height: min(92vh, 92dvh, calc(100vh - 3.5rem), calc(100dvh - 3.5rem));
    min-height: 10rem;
    border-radius: 1rem;
    transform-origin: center bottom;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .farm-ai-chat-panel:not(.farm-ai-chat-panel--hidden) {
    border-radius: 1rem 1rem 0.35rem 0.35rem;
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
  }

  .farm-ai-chat-root {
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    right: max(0.35rem, env(safe-area-inset-right, 0px));
  }
}

/* Large screens: wider panel for activity lists */
@media (min-width: 640px) {
  :root {
    --farm-ai-panel-width-cap: min(
      28rem,
      calc(100vw - max(1.25rem, env(safe-area-inset-left, 0px)) - max(1.25rem, env(safe-area-inset-right, 0px)))
    );
  }
}

@media (min-width: 1024px) {
  :root {
    --farm-ai-panel-width-cap: min(
      32rem,
      calc(100vw - max(1.5rem, env(safe-area-inset-left, 0px)) - max(1.5rem, env(safe-area-inset-right, 0px)))
    );
  }
}

/* Login welcome briefing (injected into Aira) */
.farm-ai-login-welcome:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.farm-ai-chat-bubble--welcome-lead .farm-ai-w-clock {
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  opacity: 0.85;
  margin: 0 0 0.35rem;
}

.farm-ai-chat-bubble--welcome-lead .farm-ai-w-headline {
  font-weight: 700;
  font-size: clamp(0.95rem, 3.2vw, 1.1rem);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.farm-ai-w-sub {
  margin: 0;
  font-size: clamp(0.8rem, 2.6vw, 0.9rem);
  line-height: 1.5;
  opacity: 0.92;
}

.farm-ai-chat-bubble--welcome-foot .farm-ai-chat-bubble__text {
  font-size: clamp(0.78rem, 2.5vw, 0.88rem);
}

/* Activity list: no inner height cap — whole panel body scrolls */
.farm-ai-w-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 2vw, 0.85rem);
  width: 100%;
}

.farm-ai-w-section {
  border-radius: 0.85rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
  background: rgba(241, 245, 249, 0.65);
  padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(0.75rem, 2.5vw, 1rem);
}

.dark .farm-ai-w-section {
  border-color: rgba(45, 212, 191, 0.22);
  background: rgba(30, 41, 59, 0.55);
}

.farm-ai-w-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.farm-ai-w-section__title {
  margin: 0;
  font-size: clamp(0.82rem, 2.8vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.dark .farm-ai-w-section__title {
  color: #f1f5f9;
}

.farm-ai-w-section__count {
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.dark .farm-ai-w-section__count {
  color: #94a3b8;
}

.farm-ai-w-urgent-flag {
  margin-left: 0.35rem;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #dc2626;
}

.dark .farm-ai-w-urgent-flag {
  color: #f87171;
}

.farm-ai-w-section__breakdown {
  margin: 0 0 0.45rem;
  font-size: clamp(0.72rem, 2.4vw, 0.82rem);
  line-height: 1.5;
}

.farm-ai-w-list {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.dark .farm-ai-w-list {
  border-top-color: rgba(71, 85, 105, 0.5);
}

.farm-ai-w-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 2.5vw, 0.88rem);
  line-height: 1.45;
  color: #334155;
  padding: 0.35rem 0;
}

.dark .farm-ai-w-item {
  color: #cbd5e1;
}

.farm-ai-w-item__txt {
  min-width: 0;
  overflow-wrap: anywhere;
}

.farm-ai-w-item__link {
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.farm-ai-w-item__link:hover,
.farm-ai-w-item__link:focus-visible {
  color: #0f766e;
  border-bottom-color: rgba(15, 118, 110, 0.45);
}

.dark .farm-ai-w-item__link:hover,
.dark .farm-ai-w-item__link:focus-visible {
  color: #5eead4;
  border-bottom-color: rgba(94, 234, 212, 0.4);
}

.farm-ai-w-chip {
  flex-shrink: 0;
  font-size: clamp(0.58rem, 2vw, 0.68rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 0.4rem;
  font-weight: 700;
}

.farm-ai-w-chip--overdue {
  background: #dc2626;
  color: #fff;
}

.farm-ai-w-chip--due-today {
  background: #d97706;
  color: #fff;
}

.farm-ai-w-chip--due-soon {
  background: #fcd34d;
  color: #78350f;
}

.dark .farm-ai-w-chip--due-soon {
  background: rgba(251, 191, 36, 0.35);
  color: #fef3c7;
}

.farm-ai-w-chip--upcoming {
  background: #e2e8f0;
  color: #1e293b;
}

.dark .farm-ai-w-chip--upcoming {
  background: #475569;
  color: #f1f5f9;
}

.farm-ai-w-chip--now {
  background: #059669;
  color: #fff;
}

.farm-ai-w-breakdown--now {
  color: #059669;
  font-weight: 600;
}

.dark .farm-ai-w-breakdown--now {
  color: #34d399;
}

.farm-ai-w-breakdown--overdue {
  color: #dc2626;
  font-weight: 600;
}

.dark .farm-ai-w-breakdown--overdue {
  color: #f87171;
}

.farm-ai-w-breakdown--due-today {
  color: #d97706;
  font-weight: 600;
}

.dark .farm-ai-w-breakdown--due-today {
  color: #fbbf24;
}

.farm-ai-w-breakdown--due-soon {
  color: #b45309;
}

.dark .farm-ai-w-breakdown--due-soon {
  color: #fcd34d;
}

.farm-ai-w-breakdown--upcoming {
  color: #64748b;
}

.dark .farm-ai-w-breakdown--upcoming {
  color: #94a3b8;
}
