.header-page {
  position: fixed;
  top: 0;
  /* left: 0; */
  right: 0;
  z-index: 1000; /* Đảm bảo header luôn ở trên cùng */
  background: linear-gradient(90deg, hsla(58, 97%, 76%, 1) 0%, hsla(58, 99%, 67%, 1) 10%, hsla(58, 100%, 69%, 1) 20%, hsla(58, 100%, 67%, 1) 30%, hsla(58, 100%, 67%, 1) 40%, hsla(58, 99%, 67%, 1) 50%, hsla(58, 99%, 67%, 1) 60%, hsla(55, 98%, 59%, 1) 70%, hsla(54, 100%, 59%, 1) 80%, hsla(55, 98%, 59%, 1) 90%, hsla(54, 100%, 59%, 1) 100%);
}

/* .header-page.isHome:not(.scrolled) .isLogo {
  opacity: 0;
} */
.header-page .user-info > p {
  color: rgb(0, 114, 188);
}
.logo{
  object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 200px;
}

.header-page .navbar {
  height: 5rem;
  min-height: unset;
}
.bg-outline-11 {
  border: 1px solid;
  background: rgb(0, 114, 188);
  padding: 5px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}
.bg-outline-11:hover {
  background: rgb(255, 221, 0);
  color: rgb(0, 114, 188);
}

@media screen and (min-width: 1441px) {
  .header-page .navbar {
    max-width: calc(100dvw - 200px);
  }
}
@media screen and (max-width: 820px) {
  /* .header-page.isHome:not(.scrolled) {
    background:#FFFFFD;
  } */
  .logo{
    height: auto;
    width: 100%;
    max-width: 180px;
  }
  #header-profile-avatar > div:first-child{
    height: 36px !important;
    width: 36px;
  }
}
@media screen and (max-width: 768px) {
  .header-page .navbar {
    padding-left: 18px;
    padding-right: 18px;
    height: 5rem;
  }
  .logo{
    max-width: 150px;
  }
}
@media screen and (max-width: 568px) {
  .username {
    max-width: 170px;
  }
  #header-profile-avatar > div:first-child{
    height: 30px !important;
    width: 30px;
  }
  .btn-login{
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  .username {
    max-width: 150px;
  }
  #header-profile-avatar > div:first-child{
    height: 25px !important;
    width: 25px;
  }
  .btn-login{
    font-size: 12px;
  }
}

