page-header {
  width: 100%;
}

page-header h1 {
  font-weight: 700;
  margin-bottom: 0 !important;
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.header-goBack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  transition: all ease 300ms;
}

.header-goBack[href]:empty:before {
  content: "";
  display: none;
}

.header-goBack:hover {
  background: rgba(187, 187, 187, 0.2);
}

.header-goBack svg {
  transform: rotate(90deg);
  width: 10px;
  height: 10px;
}

.header-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon:empty{
  display: none;
}

.header-icon svg {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
}

.header-label {
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 50vw;
}

@media(max-width: 768px){
  
  .header-label {
    font-size: 1rem;
    max-width: 75vw;
  }
}

.header-label:empty {
  display: none;
}

.header-options {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  overflow: scroll;
  scrollbar-width: none;
}

.header-options::-webkit-scrollbar {
  display: none;
}

.header-options.left {
  justify-content: flex-start;
}

.header-options.right {
  justify-content: flex-end;
}

.header-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all ease 300ms;
  text-decoration: none;
  gap: 4px;
}


.header-option:hover {
  cursor: pointer;
  background: rgba(187, 187, 187, 0.2);
}

.header-option-label {
  font-size: 13px;
  text-align: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

