html { scroll-behavior: smooth; }

/* Karty dni */
#dayTabs::-webkit-scrollbar { display: none; }
#dayTabs { -ms-overflow-style: none; scrollbar-width: none; }

/* Podpowiedzi adresu (ulice) */
#suggestionsList li {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  background: white;
  color: black;
}
#suggestionsList li:hover {
  background-color: #f0fdf4;
  color: #16a34a;
  font-weight: 600;
}

/* Suwak kalorii */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border-radius: 999px;
  background: #22c55e;
  cursor: pointer;
  margin-top: -7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  border: 2px solid #0f172a;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 10px rgba(34,197,94,0.55);
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #0f172a, #1f2937);
  border-radius: 999px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Lista miast */
#cityDropdown div {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  color: #e5e7eb;
}

#cityDropdown div:hover {
  background-color: #0f172a;
  color: #22c55e;
}
