.custom-feed-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  overflow-x: auto;
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.custom-feed-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .custom-feed-tabs {
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
}

.custom-feed-tabs__item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

@media (min-width: 640px) {
  .custom-feed-tabs__item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .custom-feed-tabs__item {
    gap: 0.5rem;
  }
}

.custom-feed-tabs__item:hover {
  background: hsl(var(--accent) / 0.5);
}

.custom-feed-tabs__item--active {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
}

.custom-feed-tabs__icon {
  display: inline-flex;
  height: 0.875rem;
  width: 0.875rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .custom-feed-tabs__icon {
    height: 1rem;
    width: 1rem;
  }
}

.custom-feed-tabs__item--check-in {
  border: none;
  background: transparent;
  cursor: pointer;
}

.custom-feed-tabs__item--check-in-done {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.custom-feed-tabs__item--check-in-done:hover {
  background: hsl(var(--muted));
}

.custom-feed-tabs__emoji {
  font-size: 0.875rem;
  line-height: 1;
}
