/* tab bar  */
.page-header {
  width: 100%;
  display: flex;
  height: 40px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid #f0f0f0dd;
}

.page-header .tab {
  border: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 4px 12px;
  border-bottom: 2px solid transparent;
  background-color: var(--secondBackground);
  color: var(--onSecondBackground);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px 6px 0px 0px;
}

.page-header .tab.active {
  color: #000000;
  border-bottom: 2px solid #0300ae;
  background-color: #0300ae12;
}

.page-header .tab-close {
  background-color: var(--onTertiary);
  margin-left: 8px;
  border-radius: 50%;
  display: flex;
  width: 0.9rem;
  height: 0.9rem;
  justify-content: center;
  align-items: center;
}

.page-header .tab-close svg {
  width: 0.7rem;
  height: 0.7rem;
  fill: var(--secondBackground);
  margin: auto;
}

.page-header .tab-close:hover {
  background-color: var(--onSecondBackgroundHover);
}

.page-header .tab-close:hover svg {
  fill: var(--secondBackgroundHover);
}
