/* 共通リセット */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f9fa; /* Bootstrap の薄いグレーに合わせた背景 */
}

/* カード（タイル）のホバーエフェクト */
.card {
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* お気に入りボタン */
.favorite-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

.favorite-btn:hover {
  opacity: 0.8;
}

.favorite-btn .bi-star-fill {
  color: #ffc107;
}

/* リスト表示のスタイル */
.list-item .link-content:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.list-item .link-content {
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

/* QRコードモーダル */
#qrCodeContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

#qrCodeContainer canvas,
#qrCodeContainer img {
  max-width: 100%;
  height: auto;
}

.qr-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.qr-btn:hover {
  opacity: 0.8;
}

/* ※その他のレイアウト調整は Bootstrap に任せています */
