/* ToDoバッジ: コバルトブルー × 角丸四角形 */

#todoChipBtn {
  position: relative;
  padding: 5px 9px; /* 集中モードボタンと同じサイズ */
  border: none;
  border-radius: 6px; /* 角丸も少し小さく */
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 12px; /* 集中モードボタンと同じサイズ */
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
  z-index: 1;
  
  /* コバルトブルー: フラットな背景（2D感） */
  background: #0047AB;
  
  /* 2D感: シンプルな影のみ */
  box-shadow: 
    /* コバルトブルーグロー（控えめに） */
    0 0 4px rgba(0, 82, 204, 0.3),
    /* フラットな影 */
    0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 2D感: 光沢効果を削除または最小限に */
#todoChipBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px; /* 角丸に合わせる */
  background: transparent; /* 光沢効果を削除 */
  z-index: 0;
  pointer-events: none;
}

/* 2D感: ハイライト効果を削除 */
#todoChipBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background: transparent; /* ハイライト効果を削除 */
  z-index: 0;
  pointer-events: none;
}

/* ホバー時: 2D感を保ったまま控えめに */
#todoChipBtn:hover {
  transform: translateY(-1px); /* scaleを削除して2D感を維持 */
  filter: brightness(1.1);
  box-shadow: 
    0 0 6px rgba(0, 82, 204, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.15);
}

#todoChipBtn:hover::before {
  opacity: 1;
}

#todoChipBtn:hover::after {
  opacity: 0.9;
}

/* アクティブ時: 2D感を保った押下エフェクト */
#todoChipBtn:active {
  transform: translateY(0); /* scaleを削除して2D感を維持 */
  filter: brightness(0.9);
  box-shadow: 
    0 0 4px rgba(0, 82, 204, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

#todoChipBtn:active::before {
  opacity: 1;
  background: transparent; /* 光沢効果を削除 */
}

/* テキストスタイル: 2D感を保つ */
#todoChipBtn {
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.2); /* 3D感のある影を削除 */
  letter-spacing: 0.3px; /* 少しコンパクトに */
  position: relative;
  z-index: 1;
}

/* モバイル対応: タッチ時の視覚フィードバック */
@media (max-width: 768px) {
  #todoChipBtn {
    padding: 5px 9px; /* 集中モードボタンと同じサイズ */
    font-size: 12px; /* 集中モードボタンと同じサイズ */
  }
  
  #todoChipBtn:active {
    transform: translateY(0); /* scaleを削除して2D感を維持 */
  }
}

/* フォーカス時（アクセシビリティ）: 2D感を保つ */
#todoChipBtn:focus {
  outline: none;
  box-shadow: 
    0 0 6px rgba(0, 82, 204, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(0, 82, 204, 0.25);
}

