/******************************************************
 * 컨테이너
 ******************************************************/
/* 컨테이너 */
.every-account-menu {
  position: relative;
  display: inline-flex !important;
}

/******************************************************
 * 아이콘
 ******************************************************/
/* 마이페이지 버튼 */
.every-account-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  height: 30px !important;
  width: 30px !important;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000;
}
.every-account-toggle svg {
  width: 22px !important;
  height: 22px !important;
}

/******************************************************
 * 드롭다운
 ******************************************************/
/* 드롭다운 WRAP – 기본은 숨김 */
.every-account-dropdown-wrap {
  position: absolute;
  top: 100%;

  /* 🔥 가운데 정렬 핵심 */
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 150px;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  pointer-events: none;
}

/* 🔥 hover 되었을 때 보이게 */
.every-account-menu:hover .every-account-dropdown-wrap,
.every-account-menu:focus-within .every-account-dropdown-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* 드롭다운 리스트 */
.drop-down-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

/* 항목 */
.drop-down-list-item {
  padding: 6px 12px;
  text-align: center;
}

/* 링크 스타일 */
.drop-down-list-item a {
  text-decoration: none; /* 기본 밑줄 제거 */
  font-size: 14px;
  display: inline-block; /* 밑줄 제어를 위해 inline-block */
  padding: 4px 0;
  width: 100%;
}

/* hover 효과 */
.drop-down-list-item:hover {
  background: #f5f5f5;
}

/* 구분선 */
.drop-down-list-item-divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}
