:root {
  --md-primary-fg-color: rgb(13, 46, 160); /* ヘッダーの背景色を赤に設定 */
}

.md-typeset table:not([class]) th:nth-child(1) {
  width: 30% !important;
}

.md-typeset table:not([class]) th:nth-child(2) {
  width: 50% !important;
}

.md-typeset table:not([class]) th:nth-child(3) {
  width: 20% !important;
}

.parameter-table th:nth-child(1) {
  min-width: 600px !important;
}

.parameter-table td:nth-child(2) {
  max-width: 400px !important;
  word-break: break-word;
}

.parameter-table td:nth-child(3) {
  max-width: 100px !important;
  word-break: break-word;
}


/* 共通のテーブルスタイル */
.error-codes-table,
.tj-error-codes-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  font-size: 14px;
}

.error-codes-table th,
.error-codes-table td,
.tj-error-codes-table th,
.tj-error-codes-table td {
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  text-align: left;
  word-wrap: break-word;
  white-space: normal;
}

.error-codes-table th,
.tj-error-codes-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* error-codes-table 固有の幅調整 */
.error-codes-table th:nth-child(1),
.error-codes-table td:nth-child(1) {
  width: 50%;
}

.error-codes-table th:nth-child(2),
.error-codes-table td:nth-child(2) {
  width: 30%;
}

.error-codes-table th:nth-child(3),
.error-codes-table td:nth-child(3) {
  width: 20%;
}

/* tj-error-codes-table 固有の幅調整 */
.tj-error-codes-table th:nth-child(1),
.tj-error-codes-table td:nth-child(1) {
  width: 20%;
}

.tj-error-codes-table th:nth-child(2),
.tj-error-codes-table td:nth-child(2) {
  width: 80%;
}


.models-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.models-table th,
.models-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
  /* 中央揃え */
}

.models-table th {
  background-color: #f0f0f0;
  /* 薄いグレーの背景 */
  font-weight: bold;
  font-size: small;
}

.models-table .product-name {
  text-align: left;
  /* 左寄せ */
  background-color: #e0e0e0;
  /* 少し濃いグレーの背景 */
}

.models-table .os-ios-group th:nth-child(1),
.models-table .os-android-group th:nth-child(1) {
  border-left: none;
}

.models-table .os-android-group th:first-child,
.models-table .os-android-group td:first-child {
  border-left: 2px solid #ddd;
  /* 区切り線を追加 */
}

.models-table .data-cell {
  font-family: monospace;
  /* 等幅フォントで見やすく */
}