/* list-table のヘッダーの背景色と文字色を変更 */
table.list-table tr:first-child td {
  background-color: #007BFF !important;
  /* 背景色 */
  color: white !important;
  /* 文字色 */
  font-weight: bold !important;
  text-align: center !important;
}

/* my-table のヘッダーに色をつける */
table.my-table th {
  background-color: #007BFF !important;
  color: white !important;
}

table.list-table {
  border-collapse: collapse;
  border: 2px solid #333;
}

table.list-table th,
table.list-table td {
  border: 2px solid #333;
  padding: 6px 8px;
}

th {
  white-space: nowrap;
}

/* Mermaid の背景と文字色を固定する */
.mermaid {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-radius: 6px;
  padding: 8px;
}