.scrollable {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.card_container {
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	overflow: hidden;
}

table.table.card_container {
	margin-top: 0px;
	border-top: 2px solid #054a8b !important;
}

.match {
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
	background-color: white;
	min-height: 100px;
}

.match:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.heading {
	font-weight: bold;
	padding: 4px;
	background: #054a8b;
	color: #88ff00;
}
.heading-dark {
	font-weight: bold;
	padding: 4px;
	color: #054a8b;
}
.heading-badge {
	font-weight: bold;
	padding: 4px 10px;
	background-color: #88ff00;
	color: #054a8b;
	border-radius: 100%;
}

.players {
	display: flex;
	justify-content: center;
	/* font-size: 18px; */
	margin: 10px 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.player {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.winner {
	font-weight: bold;
}

.position {
	font-size: 14px;
	margin-top: 10px;
}

.vs {
	background: #e63757;
	color: #fff;
	border-radius: 25px;
	height: 25px;
	width: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
}

.courtInfo {
	background: #ededed;
	padding: 9px;
	margin-bottom: 10px;
	border-radius: 10px;
}

.headerCard h5 {
	font-size: 18px;
}
.headerCard p {
	font-size: 14px;
}

@media only screen and (max-width: 767px) {
	.headerCard h5,
	section.page-heading.top-banner h1 {
		display: -webkit-box;
		/* max-width: 200px; */
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.headerCard h5 {
		font-size: 15px;
		display: -webkit-box;
		/* max-width: 200px; */
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.headerCard p {
		font-size: 14px;
	}
}
