/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 24 2026 | 06:51:27 */
	
/* ストライプスタイルのテーブルに対する上書き設定 */
.content .wp-block-table.is-style-stripes table {
    border-collapse: collapse !important;
    background-color: transparent !important;
}

.content .wp-block-table.is-style-stripes th {
	background-color: #000;
}

/* 全てのセルの文字色を白に統一 */
.content .wp-block-table.is-style-stripes th,
.content .wp-block-table.is-style-stripes td {
    color: #ffffff !important;
    border: 1px solid #444444 !important; /* 枠線が見えにくい場合は調整 */
}

/* 奇数行（白い背景になってしまう行）の背景色を暗いグレーに上書き */
.content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) td {
    background-color: #1e1e1e !important;
}

/* 偶数行の背景色をやや明るいグレーに設定 */
.content .wp-block-table.is-style-stripes tbody tr:nth-child(even) td {
    background-color: #2d2d2d !important;
}

/* ヘッダー行の背景色を固定 */
.entry-content .wp-block-table.is-style-stripes thead tr th {
    background-color: #111111 !important;
}