/* パターン全体のCSS */

/* --- 2列テーブル（枠線あり） --- */
.custom-two-column-table table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #bbb;
}

.custom-two-column-table td {
  padding: 10px;
  border: 2px solid #bbb;
}

.custom-two-column-table tr td:first-child {
  background-color: #e5e7eb; /* bg-gray-200 */
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  width: 35%;
}
