header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 80px;
  padding: 20px 24px;
  background-color: white;
  box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

header img {
  height: 40px;
}

.header-help-icon {
  width: 20px;
  margin-right: 16px;
}

.dropdown-container {
  position: relative;
  display: inline-block;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.header-initials {
  padding: 10px;
  cursor: pointer;
  user-select: none;
  width: 32px;
  height: 32px;
  border: 2px solid rgb(42, 54, 71);
  border-radius: 50%;
  color: rgb(41, 171, 226);
  font-weight: bold;
  font-size: 11px;
}

.header-initials:hover {
  background-color: rgba(12, 46, 98, 0.12);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 64px;
  right: 0;
  background-color: rgb(42, 54, 71);
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 200px;
  border-radius: 10px 0px 10px 10px;
}

.dropdown-menu ul {
  list-style-type: none;
}

.dropdown-menu ul li a {
  text-decoration: none;
  color: rgb(205, 205, 205);
  text-decoration: none;
  display: inline-block;
  line-height: 40px;
  vertical-align: middle;
  padding-left: 10px;
}

.dropdown-menu ul li:hover {
  background-color: rgb(51, 75, 109);
}

.dropdown-container:focus-within .dropdown-menu {
  display: block;
}
