.weather-scheduler-strip {
  margin: 14px 0 18px;
  padding: 14px;
  border: 1px solid rgba(47, 111, 24, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 252, 244, 0.96), rgba(255,255,255,0.96));
  box-shadow: 0 8px 24px rgba(18, 49, 12, 0.08);
}

.weather-scheduler-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.weather-scheduler-head strong {
  color: #245c18;
  font-size: 0.98rem;
}

.weather-scheduler-head span {
  color: #55705a;
  font-size: 0.82rem;
}

.weather-scheduler-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.weather-day-card {
  min-width: 86px;
  border: 1px solid rgba(22, 61, 18, 0.12);
  border-radius: 14px;
  padding: 9px 8px;
  text-align: center;
  background: #fff;
}

.weather-day-name {
  font-weight: 800;
  color: #25491f;
  font-size: 0.82rem;
}

.weather-day-date {
  color: #6a786a;
  font-size: 0.72rem;
  margin-top: 1px;
}

.weather-day-icon {
  font-size: 1.45rem;
  line-height: 1;
  margin: 7px 0 5px;
}

.weather-day-temp {
  font-weight: 800;
  font-size: 0.95rem;
}

.weather-day-rain,
.weather-day-risk {
  font-size: 0.72rem;
  color: #607060;
}

.weather-risk-low {
  border-color: rgba(70, 140, 50, 0.25);
}

.weather-risk-medium {
  border-color: rgba(214, 157, 37, 0.42);
  background: #fffaf0;
}

.weather-risk-high {
  border-color: rgba(190, 63, 45, 0.38);
  background: #fff5f2;
}

@media (max-width: 760px) {
  .weather-scheduler-head {
    display: block;
  }

  .weather-scheduler-row {
    display: flex;
  }

  .weather-day-card {
    flex: 0 0 92px;
  }
}


.weather-day-select {
  margin-top: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #24451f;
  cursor: pointer;
}

.weather-day-select input {
  width: 16px;
  height: 16px;
  accent-color: #3f7f29;
}

.weather-day-card:has(.weather-day-select input:checked) {
  outline: 2px solid rgba(63, 127, 41, 0.75);
  box-shadow: 0 8px 18px rgba(63, 127, 41, 0.18);
}

.weather-days-source-hidden {
  display: none !important;
}

.weather-scheduler-head strong {
  text-transform: none;
}


/* Weather card checkbox cleanup */
.weather-day-select {
  font-size: 0 !important;
  line-height: 1 !important;
  margin-top: 8px !important;
}

.weather-day-select input {
  font-size: initial !important;
  margin: 0 !important;
}


/* Weather selectable cards */
.weather-day-card {
  cursor: pointer;
}

.weather-card-checkbox {
  display: block;
  width: 17px;
  height: 17px;
  margin: 8px auto 0;
  accent-color: #3f7f29;
}

.weather-day-card:has(.weather-card-checkbox:checked) {
  outline: 2px solid rgba(63, 127, 41, 0.75);
  box-shadow: 0 8px 18px rgba(63, 127, 41, 0.18);
}

.weather-days-source-hidden {
  display: none !important;
}

.weather-day-card {
  cursor: pointer;
}

.weather-day-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}


/* Give weather cards room so outlines/shadows don't get clipped */
.weather-scheduler-strip {
  overflow: visible !important;
  padding: 16px 16px 18px !important;
}

.weather-scheduler-row {
  overflow-x: auto !important;
  overflow-y: visible !important;
  padding: 4px 4px 10px !important;
  margin: 0 -4px !important;
}

.weather-day-card {
  margin: 2px 0 !important;
}


/* Stronger mow condition borders + colors */
.weather-risk-low {
  border: 2px solid #3f7f29 !important;
  background: #f4fff2 !important;
}

.weather-risk-medium {
  border: 2px solid #d49d25 !important;
  background: #fff8e6 !important;
}

.weather-risk-high {
  border: 2px solid #be3f2d !important;
  background: #fff1ef !important;
}


/* Sleeker "tech glow" mow condition styling */
.weather-day-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  position: relative;
  transition: all 0.2s ease;
}

/* LOW (good) */
.weather-risk-low {
  border-color: #3aff6a !important;
  box-shadow:
    0 0 6px rgba(58, 255, 106, 0.35),
    0 0 12px rgba(58, 255, 106, 0.15);
  background: linear-gradient(180deg, #f8fff9, #ffffff) !important;
}

/* MEDIUM */
.weather-risk-medium {
  border-color: #ffc83a !important;
  box-shadow:
    0 0 6px rgba(255, 200, 58, 0.35),
    0 0 12px rgba(255, 200, 58, 0.15);
  background: linear-gradient(180deg, #fffdf5, #ffffff) !important;
}

/* HIGH */
.weather-risk-high {
  border-color: #ff5a4a !important;
  box-shadow:
    0 0 6px rgba(255, 90, 74, 0.35),
    0 0 12px rgba(255, 90, 74, 0.15);
  background: linear-gradient(180deg, #fff7f6, #ffffff) !important;
}

/* Hover polish */
.weather-day-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}


/* Slimmer cards + thinner glow */

.weather-day-card {
  padding: 6px 6px !important;
  min-height: auto !important;
  border-width: 1px !important;
}

/* tighten spacing inside */
.weather-day-name {
  font-size: 0.75rem !important;
}

.weather-day-date {
  font-size: 0.68rem !important;
}

.weather-day-icon {
  font-size: 1.25rem !important;
  margin: 4px 0 !important;
}

.weather-day-temp {
  font-size: 0.85rem !important;
}

.weather-day-rain,
.weather-day-risk {
  font-size: 0.68rem !important;
}

/* tone down glow just a bit */
.weather-risk-low {
  box-shadow:
    0 0 4px rgba(58, 255, 106, 0.28),
    0 0 8px rgba(58, 255, 106, 0.12) !important;
}

.weather-risk-medium {
  box-shadow:
    0 0 4px rgba(255, 200, 58, 0.28),
    0 0 8px rgba(255, 200, 58, 0.12) !important;
}

.weather-risk-high {
  box-shadow:
    0 0 4px rgba(255, 90, 74, 0.28),
    0 0 8px rgba(255, 90, 74, 0.12) !important;
}


/* Slightly larger weather icons */
.weather-day-icon {
  font-size: 1.55rem !important;
  margin: 6px 0 !important;
}



/* SVG weather icons */
.weather-day-icon {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 34px;
}

.weather-day-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.14));
}

/* Weather icon contrast badge */
.weather-day-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 6px auto 5px !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 38%),
    linear-gradient(145deg, rgba(32, 70, 48, 0.92), rgba(17, 36, 31, 0.92)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 4px 10px rgba(18, 49, 28, 0.20) !important;
}

.weather-day-icon img {
  width: 34px !important;
  height: 34px !important;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35)) !important;
}


/* Weather icon contrast badge */
.weather-day-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 6px auto 5px !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 38%),
    linear-gradient(145deg, rgba(32, 70, 48, 0.92), rgba(17, 36, 31, 0.92)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 4px 10px rgba(18, 49, 28, 0.20) !important;
}

.weather-day-icon img {
  width: 34px !important;
  height: 34px !important;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35)) !important;
}


/* Improved icon visibility (rain-friendly) */
.weather-day-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 6px auto 5px !important;
  border-radius: 12px !important;

  /* lighter glass background */
  background: linear-gradient(
    145deg,
    rgba(240, 255, 245, 0.9),
    rgba(220, 240, 255, 0.9)
  ) !important;

  border: 1px solid rgba(0,0,0,0.08) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 3px 8px rgba(0,0,0,0.08) !important;
}

.weather-day-icon img {
  width: 34px !important;
  height: 34px !important;

  /* boost visibility without killing colors */
  filter:
    brightness(1.08)
    contrast(1.15)
    drop-shadow(0 1px 2px rgba(0,0,0,0.18)) !important;
}


/* Light grey icon background (balanced visibility) */
.weather-day-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 6px auto 5px !important;
  border-radius: 12px !important;

  background: linear-gradient(
    145deg,
    #f1f3f5,
    #dfe3e8
  ) !important;

  border: 1px solid rgba(0,0,0,0.06) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 2px 5px rgba(0,0,0,0.06) !important;
}

.weather-day-icon img {
  width: 35px !important;
  height: 35px !important;

  /* keep icons natural but slightly clearer */
  filter:
    contrast(1.05)
    drop-shadow(0 1px 2px rgba(0,0,0,0.22)) !important;
}

