.dashboard-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}
.dashboard-header__header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dashboard-header__header__title {
  padding: 0;
  line-height: 1;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 0;
}
.dashboard-header__header__title:hover {
  cursor: pointer;
  text-decoration: underline;
}
.dashboard-header__header .noSafariTitle {
  transition: none !important;
}
.dashboard-header__header__slash {
  font-size: 2rem;
}
.dashboard-header__header__activeTab {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
}
.dashboard-header__header__activeTab:hover {
  cursor: default !important;
  text-decoration: none !important;
}
.dashboard-header__header__activeTab span {
  font-size: 2rem !important;
  color: hsl(var(--foreground));
}

@media screen and (max-width: 768px) {
  .dashboard-header__header__title {
    font-size: 0.875rem;
  }
  .dashboard-header__header__slash {
    font-size: 1.5rem;
  }
  .dashboard-header__header__activeTab {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .dashboard-header {
    flex-direction: column;
    gap: 0;
  }
}

/*# sourceMappingURL=dashboardHeader.css.map */
