/* カスタムスタイル */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

/* スクロールバーのスタイル */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* テーブルの固定ヘッダー対応 */
.sticky {
  position: sticky;
  z-index: 10;
}

/* モーダルアニメーション */
#item-modal {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ガントチャートのバーホバー効果は削除（アイテム管理と同じ見た目に統一） */

/* タブボタンのトランジション */
.tab-button {
  transition: all 0.2s ease;
}

/* ボタンホバー効果 */
button {
  transition: all 0.2s ease;
}

/* テーブル行のホバー効果 */
tbody tr:hover {
  background-color: rgba(243, 244, 246, 0.8);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  table {
    font-size: 0.75rem;
  }
  
  .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* 印刷用スタイル */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .shadow-md {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
}
