/* アカウントポップアップのスタイル */
.account-popup {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  overflow: hidden;
  display: none;
  /* デフォルトでは非表示 */
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

/* アクティブ時のスタイル */
.account-popup.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* JavaScriptとの整合性のためにshowクラスも追加 */
.account-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ポップアップの項目スタイル */
.user-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  transition: background-color 0.2s;
}

.user-item:hover {
  background-color: #f5f8fa;
}

.user-item a {
  text-decoration: none;
  color: #333;
  width: 100%;
  font-size: 14px;
}

.user-item img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  object-fit: cover;
  border-radius: 50%;
}
