body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}/* ================= メイン ================= */
.block-summary {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #27272a;
  border-radius: 16px;
  margin: 12px 16px;
  overflow-x: auto;
}.block-summary-item {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 10px 6px;
  border-radius: 12px;
  font-size: 13px;
}.block-summary-item.good { background: #14532d; color: #4ade80; }
.block-summary-item.caution { background: #713f12; color: #fbbf24; }
.block-summary-item.danger { background: #431407; color: #f87171; }/* ブロックメイン */
.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #27272a;
  border-radius: 20px 20px 0 0;
}.block-status {
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
}.block-status.good { background: #14532d; color: #4ade80; }
.block-status.caution { background: #713f12; color: #fbbf24; }
.block-status.danger { background: #431407; color: #f87171; }.request-item {
  background: #18181b;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
}.request-item:active {
  transform: scale(0.97);
}/* 緊急TODO */
.urgent-todo-box {
  background: #18181b;
  border-radius: 20px;
  padding: 16px;
  margin: 0 16px 16px;
}.urgent-todo-title {
  font-size: 13px;
  color: #a1a1aa;
  margin-bottom: 8px;
}.urgent-todo-item {
  padding: 8px 0;
  border-bottom: 1px solid #27272a;
  font-size: 14.5px;
}.urgent-todo-item:last-child {
  border-bottom: none;
}/* TODO */
.todo-item {
  background: #18181b;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}.priority-3 { border-left: 5px solid #ef4444; }
.priority-2 { border-left: 5px solid #eab308; }
.priority-1 { border-left: 5px solid #3b82f6; }.todo-completed {
  opacity: 0.55;
}/* 優先度ボタン（製品版） */
.priority-btn {
  background: #27272a;
  color: #e5e5e5;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}.priority-btn.active {
  background: #fff;
  color: #18181b;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}/* モーダル */
.modal {
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}{
-webkit-tap-highlight-color: transparent;
}

/* キャパシティモーダル用スクロール強化 */
.capacity-content {
  scrollbar-width: thin;
  scrollbar-color: #10b981 #27272a;
}/* データ管理用 */
.import-preview {
  background: #18181b;
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
}

