/* Homepage Watchlist Filter Tabs */
.homepage-filter-tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  color: #9ca3af; /* text-gray-400 */
  transition: all 0.2s ease-in-out;
}
.homepage-filter-tab:hover {
  color: #e5e7eb; /* text-gray-200 */
  background-color: rgba(255, 255, 255, 0.05);
}
.homepage-filter-tab.active {
  color: #22d3ee; /* text-cyan-400 */
  border-bottom-color: #22d3ee; /* border-cyan-400 */
  font-weight: 600;
}

/* NEW: Utility class to hide scrollbars 
*/
.no-scrollbar {
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Hide scrollbar for IE, Edge */
  -ms-overflow-style: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Watchlist Modal Filter Tabs */
.modal-filter-tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: #9ca3af; /* text-gray-400 */
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.modal-filter-tab:hover {
  color: #e5e7eb; /* text-gray-200 */
}

/* Default active tab (applies to 'All') */
.modal-filter-tab.active {
  color: #22d3ee; /* text-cyan-400 */
  border-bottom-color: #22d3ee; /* border-cyan-400 */
  font-weight: 600;
}

/* NEW: Specific active tab color overrides 
*/
.modal-filter-tab[data-filter="watching"].active {
  color: #60a5fa; /* text-blue-400 */
  border-bottom-color: #60a5fa;
}
.modal-filter-tab[data-filter="planning"].active {
  color: #facc15; /* text-yellow-400 */
  border-bottom-color: #facc15;
}
.modal-filter-tab[data-filter="completed"].active {
  color: #4ade80; /* text-green-400 */
  border-bottom-color: #4ade80;
}
.modal-filter-tab[data-filter="dropped"].active {
  color: #f87171; /* text-red-400 */
  border-bottom-color: #f87171;
}

/* Watchlist Modal Sticky Category Headers */
.status-category h3 {
  position: sticky;
  top: -1px;
  background-color: #1f2937; /* bg-gray-800 */
  z-index: 10;
}