.ap-profile {
  position: relative;
}
.ap-profileBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px 6px 6px;
  cursor: pointer;
}
.ap-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(26, 115, 232, 0.14),
    rgba(26, 115, 232, 0.06)
  );
  border: 1px solid rgba(26, 115, 232, 0.25);
  color: #0c4464;
  font-weight: 900;
  font-size: 12px;
}
.ap-caret {
  color: #64748b;
  font-weight: 900;
}

.ap-profileMenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: none;
  z-index: 9999;
}
.ap-profileMenu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
}
.ap-profileMenu a:hover {
  background: rgba(26, 115, 232, 0.08);
  color: #0c4464;
}
.ap-profile.is-open .ap-profileMenu {
  display: block;
}



