/* カスタムスタイル */
body {
  background-color: #f3f4f6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ボタンのホバーエフェクト */
button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:active {
  transform: translateY(0);
}

/* テーブルのレスポンシブ対応 */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* フォーム入力のフォーカススタイル */
input:focus {
  outline: none;
}

/* 印刷時のスタイル調整 */
@media print {
  .no-print {
    display: none !important;
  }
}

/* ローディングアニメーション */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

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