/* Custom Scrollbar for Pill Categories */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Touch friendly active state for bottom nav */
.nav-btn.active {
  color: #10b981; /* emerald-500 */
}

.nav-btn.active i {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Category Pill Active State */
.pill-btn.active {
  background-color: #10b981 !important;
  color: #020617 !important;
  font-weight: 800 !important;
}

/* Input focus glow */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Date picker appearance override for dark mode */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Prevent zoom on focus for mobile iOS/Android */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
