.Rcenter {
	text-align: center;
}

/* リーグシーズン選択部分 */
.league-season-label {
	display: block;
	margin-bottom: 8px;
	color: var(--primary-color);
	font-size: 1.1em;
	font-weight: bold;
}

#league-season select {
	margin-bottom: 10px;
	padding: 10px;
	color: #2c3e50;
	font-size: 16px;
	background: #f8f9fa;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 1em;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

#league-season select:hover {
	background: #fff;
	border-color: #2c3e50;
}

#league-season select:focus {
	border-color: #3498db;
	box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
	outline: none;
}

.Rscore {
	position: relative;
	color: #2c3e50;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

#TschList {
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
}

#TschList table {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;
	border-collapse: collapse;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#TschList th {
	padding: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	background: #2c3e50;
}

#TschList td {
	padding: 12px;
	color: #333;
	border-bottom: 1px solid #eee;
}

/* 偶数行と奇数行の背景色 */
#TschList tr:nth-child(odd) {
	background: #fff;
}
#TschList tr:nth-child(even) {
	background: #f8f9fa;
}

/* ラウンド番号のスタイル */
#TschList td.round-number {
	width: 40px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	background: #34495e;
}
#TschList td.date-cell {
	color: #2c3e50;
	font-size: 16px;
	text-align: center;
}

@media (max-width: 767px) {
	#TschList td.date-cell {
		font-size: 10px;
		font-weight: bold;
	}
}

/* チーム情報のセル */
#TschList td.team-cell {
	width: 30%;
	padding: 12px 15px;
	color: #2c3e50;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

#TschList td.result-cell {
	color: #2c3e50;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

@media (max-width: 767px) {
	#TschList td.result-cell {
		font-size: 15px;
	}
}

/* チーム名のスタイル */
#TschList .team-name-text {
	margin-left: 5px;
	color: #2c3e50;
	font-weight: bold;
}

/* ホバー効果 */
#TschList tr:hover {
	background: #edf7ff !important;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.Gtitle {
	padding: 15px !important;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: #34495e !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
	#TschList {
		padding: 10px;
	}

	#TschList td,
	#TschList th {
		padding: 2px;
		font-size: 10px;
	}

	.Rscore {
		font-size: 16px;
	}

	#TschList td.round-number {
		font-size: 10px;
	}

	#TschList .team-type {
		width: 20px;
		font-size: 0.8em;
	}

	#TschList td.team-cell {
		padding: 2px;
		font-size: 11px;
	}

	#league-season {
		max-width: 100%;
		margin: 0 0 20px;
		padding: 10px;
	}

	#league-season select {
		padding: 8px;
		font-size: 14px;
	}

	/* ResultListのレスポンシブ対応 */
	#ResultList {
		padding: 10px;
	}

	#ResultList table {
		margin-bottom: 20px;
	}

	#ResultList th,
	#ResultList td {
		padding: 8px;
		font-size: 14px;
	}

	#ResultList td.Rscore {
		font-size: 16px;
	}

	#ResultList img {
		width: 40px;
		height: 40px;
	}
}

#ResultList {
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
}

#ResultList table {
	width: 100%;
	margin-bottom: 30px;
	background: #fff;
	border-collapse: collapse;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#ResultList th {
	padding: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	background: #2c3e50;
}

#ResultList td {
	padding: 12px;
	color: #333;
	text-align: center;
	border-bottom: 1px solid #eee;
}

#ResultList td[onClick] {
	cursor: pointer;
}

#ResultList td[onClick]:hover {
	background: #edf7ff;
}
