/* 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;
}

/* toctree（目次）内の番号を非表示にする */
.toctree-l1 > a::before,
.toctree-l2 > a::before,
.toctree-l3 > a::before {
  content: none !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;
}

