/* 
 * 学校図書貸し出しシステム - 共通スタイル
 * School Library Management System - Common Styles
 */

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ベース */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* バーコードスキャナーアニメーション */
@keyframes scanLine {
  0% { top: 0; }
  100% { top: 100%; }
}

@keyframes scanPulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0,255,136,0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

/* 成功アニメーション */
@keyframes checkmark {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ツールチップ */
[title] {
  position: relative;
}

/* フォーカス表示アクセシビリティ */
:focus-visible {
  outline: 2px solid #2d6a9f;
  outline-offset: 2px;
}

/* スクロールバースタイル */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* 選択テキストカラー */
::selection {
  background: rgba(45,106,159,0.2);
  color: inherit;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 印刷用 */
@media print {
  .sidebar, .top-bar, .btn, .pagination, .search-bar { display: none !important; }
  .main { width: 100% !important; }
  table { font-size: 0.8rem; }
  .badge {
    border: 1px solid #aaa !important;
    background: transparent !important;
    color: #000 !important;
  }
}
