/* ── RS Modoctor 前台門診表 ──────────────────────── */

.rs-modoctor-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.rs-modoctor-table {
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
	table-layout: fixed;
	font-family: "Noto Sans TC", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
}

/* ── 表頭 ─────────────────────────────────────────── */
.rs-modoctor-table thead th {
	background: #BFA687;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.8px;
	height: 40px;
	padding: 10px 0;
	border: 1px solid #D0D0D0;
	text-align: center;
	vertical-align: middle;
}

/* ── 資料格共用 ───────────────────────────────────── */
.rs-modoctor-table tbody td {
	border: 1px solid #D0D0D0;
	height: 63px;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	font-weight: 500;
	letter-spacing: 0.8px;
	background: #fff;
}

/* ── 時段標籤欄 ───────────────────────────────────── */
.rs-modoctor-session-label {
	color: #5F5F5F;
	font-weight: 500;
}

/* ── 醫師容器 ─────────────────────────────────────── */
.rs-modoctor-doctors {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	height: 100%;
}

/* ── 醫師連結 ─────────────────────────────────────── */
.rs-modoctor-doctor {
	display: block;
	color: #5F5F5F;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.8px;
	white-space: nowrap;
}

.rs-modoctor-doctor:hover {
	text-decoration: underline;
	color: #BFA687;
}

/* ── 休診 ─────────────────────────────────────────── */
.rs-modoctor-closed {
	color: #858585;
	font-weight: 500;
}

/* ── RWD ──────────────────────────────────────────── */
@media (max-width: 900px) {
	.rs-modoctor-table {
		font-size: 14px;
	}

	.rs-modoctor-table thead th,
	.rs-modoctor-table tbody td {
		padding: 8px 4px;
	}
}
