.template-phone-list {
  display: grid;
  gap: 4px;
}

.template-phone-list > div {
  min-width: 0;
  gap: 5px;
  min-height: 20px;
  border-bottom: 1px solid var(--template-border);
}

.template-phone-list > div:last-child {
  border-bottom: 0;
}

.template-phone-list i {
  display: block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--template-active-accent);
}

.template-phone-list strong {
  min-width: 0;
  overflow: hidden;
  color: var(--template-text);
  font-size: 8px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-phone-list span {
  margin-left: auto;
  color: var(--template-muted);
  font-size: 8px;
  white-space: nowrap;
}

.template-phone-tabbar {
  justify-content: space-around;
  gap: 6px;
  padding: 4px 7px 5px;
  border-top: 1px solid var(--template-border);
  background: var(--template-card-bg);
}

.template-phone-tabbar span {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 34px;
  color: var(--template-muted);
}

.template-phone-tabbar span.active {
  color: var(--template-active-accent);
}

.template-phone-tabbar i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.template-phone-tabbar span.active i {
  background: currentColor;
}

.template-phone-tabbar b {
  font-size: 8px;
  font-weight: 600;
}

.template-phone-tabbar button.template-demo-tab {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--template-muted);
  font: inherit;
}

.template-phone-tabbar button.template-demo-tab.active {
  color: var(--template-active-accent);
}

.template-phone-tabbar button.template-demo-tab i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.template-phone-tabbar button.template-demo-tab.active i {
  background: currentColor;
}

.template-phone-tabbar button.template-demo-tab b {
  font-size: 8px;
  font-weight: 600;
}

