.tm-109-container {
	font-family: inherit;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	overflow: hidden;
}

.tm-109-tabs {
	display: flex;
	border-bottom: 2px solid #eee;
	background-color: transparent;
}

.tm-109-tab {
	flex: 1;
	background: none;
	border: none;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	color: #666;
}

.tm-109-tab.active {
	border-bottom-color: #E10814;
	color: #E10814;
}

.tm-109-content {
	display: none;
	padding: 20px;
}

.tm-109-content.active {
	display: block;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.tm-109-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tm-109-match {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 6px;
	border-left: 4px solid #ccc;
}

.tm-109-match-my-team-home {
	border-left-color: #E10814;
}

.tm-109-match-date {
	font-size: 13px;
	color: #888;
	width: 120px;
}

.tm-109-match-teams-layout {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	gap: 15px;
}

.tm-109-team {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

.tm-109-team-left {
	justify-content: flex-end;
	text-align: right;
}

.tm-109-team-right {
	justify-content: flex-start;
	text-align: left;
}

.tm-109-team img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.tm-109-team-name {
	font-weight: bold;
	font-size: 16px;
	color: #242424;
}

.tm-109-vs {
	font-size: 12px;
	color: #888;
	font-weight: bold;
	padding: 0 10px;
}

.tm-109-score-display {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 10px;
}

.tm-109-score-value {
	font-size: 24px;
	font-weight: 800;
	color: #242424;
}

.tm-109-score-sep {
	color: #888;
	font-weight: bold;
}

.tm-109-match-meta {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
	width: 120px;
}

.tm-109-venue {
	font-size: 12px;
	color: #666;
}

.tm-109-badge {
	font-size: 11px;
	padding: 3px 8px;
	background: #eee;
	border-radius: 12px;
	font-weight: bold;
}

.tm-109-result-win .tm-109-score-value { color: #E10814; }
.tm-109-result-loss .tm-109-score-value { color: #888; }
.tm-109-result-draw .tm-109-score-value { color: #444; }


.tm-109-table-wrapper {
	overflow-x: auto;
}

.tm-109-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.tm-109-table th, .tm-109-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #eee;
}

.tm-109-table th {
	background-color: #f9f9f9;
	color: #666;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.tm-109-td-pos, .tm-109-th-pos {
	width: 60px;
	text-align: center;
	color: #888;
}

.tm-109-th-stat, .tm-109-td-stat {
	width: 40px;
	text-align: center;
	color: #666;
}

.tm-109-th-pts, .tm-109-td-pts {
	width: 50px;
	text-align: center;
}

.tm-109-td-team strong {
	color: #242424;
}

.tm-109-td-pts strong {
	color: #E10814;
	font-size: 16px;
}

.tm-109-standing-highlight {
	background-color: rgba(225, 8, 20, 0.05);
}

@media (max-width: 768px) {
	.tm-109-match {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.tm-109-match-date, .tm-109-match-meta {
		width: 100%;
		text-align: center;
		align-items: center;
	}
	.tm-109-match-teams-layout {
		padding: 10px 0;
		width: 100%;
	}
}
