*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 全ページ共通のベースタイポグラフィと余白 */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 40px;
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* 共通ボタンの見た目 */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #222;
  border-radius: 999px;
  color: #222;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* フッターのバージョン表示 */
.version-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #666;
  font-size: 0.875rem;
}

#app-version {
  font-family: 'Courier New', monospace;
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

@media (max-width: 720px) {
  body {
    padding: 16px;
  }

  .version-footer {
    margin-top: 30px;
    padding-top: 15px;
  }
}
