/* header */

header {
  width: 100%;
  height: 96px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  background-color: white;
  box-shadow: 0 4px 4px 0 var(--shadow-color);
  align-items: center;
  font-weight: 400;
  font-size: 20px;
}

.header-left {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
}

.header-title {
  margin-left: 272px;
}

.header-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
  gap: 12px;
}

.user-profile-initials {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--brand-dark);
  border-radius: 100%;
  color: var(--brand-blue);
  font-weight: 500;
  cursor: pointer;
}

.user-profile-initials:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.help-span {
  display: none !important;
}

.join-logo-header {
  display: none;
}

.dropdown {
  position: absolute;
  display: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 31px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  min-width: 150px;
  background-color: var(--brand-dark);
  color: white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 0;
}

.dropdown-content a {
  color: #cdcdcd;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: var(--navigation-hover);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 0;
}

.dropdown-content {
  display: block;
}

.help-icon {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.help-icon:hover {
  transform: scale(1.15);
}
