/* sort.css (全置き換え・完成版) */

.dropdown-container {
  padding: 30px 15px; /* スマホ用に左右パディング調整 */
  margin-bottom: 16px;
  display: flex;
  /* ★ 変更: デフォルトを中央揃えに */
  justify-content: center; 
}

.dropdown {
  position: relative;
  display: inline-block;
  /* ★ 削除: margin-left/right は不要 */
}

/* --- ボタン本体 --- */
.dropdown-button {
  display: flex;
  align-items: center;
  gap: 10px; /* テキストと矢印の間隔 */
  padding: 8px 16px; /* パディング調整 */
  
  /* ★ 変更: ダークテーマのデザイン */
  background-color: #000000;
  color: rgb(0, 255, 0);
  border: 1px solid rgba(0, 255, 0, 0.5); 
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2); 
  
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px; /* 少し角丸に */
  transition: background-color 0.3s, box-shadow 0.3s;
}
.dropdown-button:hover {
  background-color: #333;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

/* --- CSS矢印 --- */
.dropdown-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgb(0, 255, 0);
  border-bottom: 2px solid rgb(0, 255, 0);
  transform: rotate(45deg); /* 下向き */
  transition: transform 0.3s ease;
}

/* ★ 追加: メニューが開いた時に矢印を上向きに */
.dropdown-button.open .dropdown-arrow {
  transform: rotate(-135deg); /* 上向き */
}

/* --- ドロップダウンメニュー --- */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px); /* ボタンの少し下に表示 */
  left: 0;
  
  /* ★ 変更: ダークテーマのデザイン */
  background-color: #1a1a1a;
  border: 1px solid rgba(0, 255, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3); 
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  overflow: hidden; /* ボーダー半径を適用するため */
}

.dropdown-menu a {
  /* ★ 変更: ダークテーマのデザイン */
  color: #f0f0f0; 
  padding: 12px 16px; /* パディング調整 */
  text-decoration: none;
  display: block;
  font-size: 15px;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  /* ★ 変更: ホバー時のスタイル */
  background-color: rgb(0, 255, 0);
  color: #111;
}

/* ★ 変更: JSで .show クラスが付いた時の表示 */
.dropdown-menu.show {
  /* display: block; は不要 */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* --- レスポンシブ (PC) --- */
/* PCサイズ (768px以上) では右寄せに戻す */
@media (min-width: 768px) {
  .dropdown-container {
    justify-content: flex-end; /* 右寄せ */
    padding: 30px; /* 元のパディングに戻す */
  }
}


