/* Salesforce風スタイル */
body {
  font-family: 'Salesforce Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ナビゲーションボタン */
.nav-btn {
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.nav-btn:hover {
  border-bottom-color: #DDDBDA;
}

/* テーブルスタイル */
table {
  font-size: 0.875rem;
}

/* ドラッグ&ドロップスタイル */
.draggable {
  transition: all 0.2s ease;
}

.draggable:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.drop-zone {
  transition: all 0.2s ease;
}

.drop-zone:hover {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: rgb(59, 130, 246);
}

/* モーダルアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fixed {
  animation: fadeIn 0.2s ease;
}

/* カードホバー効果 */
.bg-white {
  transition: box-shadow 0.2s ease;
}

.bg-white:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* プログレスバー */
.h-2 {
  transition: width 0.3s ease;
}

/* スクロールバーのカスタマイズ */
::-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;
}