#userContainer {
  right: 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  padding-left: 6px;
  padding-right: 6px;
  height: 60%;
  position: relative;
  border: 1px solid transparent;
}
#userContainer #userIcon {
  display: flex;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
#userContainer #userIcon i {
  font-size: 25px;
  text-align: end;
  align-self: center;
  color: #075e2b;
}
#userContainer #userName {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  gap: 1em;
}
#userContainer #userName #userNameText {
  font-size: 18px;
  color: #075e2b;
  font-weight: lighter;
}
#userContainer .user-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: unset;
  max-width: unset;
  box-sizing: border-box;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 4px 4px;
  padding: 0;
  margin-top: 0;
}
#userContainer .user-dropdown .toolsButton {
  padding: 6px 18px;
  cursor: pointer;
  font-size: 1em;
  color: #333;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
#userContainer .user-dropdown .toolsButton:hover {
  background: #f5f5f5;
}
#userContainer .user-dropdown #headerLogout {
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
#userContainer .user-dropdown #chatbot_img {
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
}
#userContainer:hover {
  background: #f5f5f5;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  height: 100px;
  width: 100%;
  margin-top: 0;
  border-bottom: solid 1px rgba(170, 170, 170, 0.473);
  background-color: white;
  padding: 0 20px;
  min-width: 540px;
}
header img {
  display: inline-block;
  margin-left: 1em;
  cursor: pointer;
}
header #headerLogout > img {
  height: 1em;
  width: 1em;
  margin-right: 0;
  margin-left: 0;
  filter: none;
}
header #headerLogout:hover,
header #headerLogout > img:hover {
  background: none;
  filter: none;
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
}
header #headerLogoImage {
  height: 80px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}

#userDropdown .toolsButton {
  transition: background 0.2s;
}

#userDropdown .toolsButton:hover {
  background: #e6f0ea;
  color: #009548;
}

#userDropdown .toolsButton:hover img,
#userDropdown .toolsButton:focus img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(97%) saturate(747%) hue-rotate(97deg) brightness(92%) contrast(92%);
}

@media screen and (max-width: 768px) and (max-height: 1024px) {
  #header {
    height: 50px;
    overflow: visible;
    background-color: var(--background-color-mobil);
    margin-bottom: 0;
    padding: 10px;
  }
  header img {
    height: 30px;
  }
  #headerLogoImage {
    height: 30px;
    max-height: 50px;
  }
  #userContainer #userIcon,
  #userContainer #userIcon i {
    font-size: 15px;
  }
  #userContainer #userName #userNameText {
    font-size: 14px;
  }
  #userContainer #userIcon i,
  #userContainer #userName #userNameText {
    color: white;
  }
}

/*# sourceMappingURL=kersiaHeader.css.map */
