/* Live carousel container */
.com-xscores-live{
	width: 100%;
	padding-left: 44px;
	padding-right: 44px;
}
.com-xscores-live .xscores-live-match{
	overflow: hidden;
}

/* Live match card */
.com-xscores-live .xscores-live-match-card .card{
	overflow: hidden;
	border: none;
	border-radius: 10px;
	transition: box-shadow 0.2s ease;
}
.com-xscores-live .xscores-live-match-card .card:hover{
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Team name */
.com-xscores-live .xscores-live-match-card .team{
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
}

/* Score */
.com-xscores-live .xscores-live-match-card .score{
	font-size: 1.3rem;
	line-height: 1.6rem;
	font-weight: 800;
	color: #1a1a1a;
}

/* Team logo */
.com-xscores-live .xscores-live-match-card .xs-logo{
	width: 24px;
	height: 24px;
	object-fit: contain;
	border-radius: 3px;
}

/* Top title & partial */
.com-xscores-live .xscores-live-match-card .toptitle{
	font-size: 0.78rem;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
	color: #6c757d;
	font-weight: 500;
}
.com-xscores-live .xscores-live-match-card .partial{
	font-size: 0.82rem;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
	color: #666;
}

/* Carousel controls */
.com-xscores-live .carousel-control-prev,
.com-xscores-live .carousel-control-next{
	width: 44px;
	color: #aaa;
	transition: color 0.15s ease;
}
.com-xscores-live .carousel-control-prev:hover,
.com-xscores-live .carousel-control-next:hover{
	color: #5c9801;
}

/* Card context (round / stage) */
.com-xscores-live .xscores-live-match-card .xscores-live-match-card-context{
	margin-top: 6px;
	font-size: 0.72rem;
	line-height: 1rem;
	color: #6c757d;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.com-xscores-live .xscores-live-match-card .card-title .xscores-live-tv-button{
	margin-top: 0;
}

/* Modal */
.xscores-live-match-modal.modal{
	z-index: 10050;
}
.com-xscores-live .xscores-live-match-modal .modal-title{
	max-width: calc(100% - 40px);
	overflow: hidden;
}
.com-xscores-live .xscores-live-match-modal .team{
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25rem;
	white-space: break-spaces;
}
.com-xscores-live .xscores-live-match-modal-logo{
	width: 64px;
	height: 64px;
	object-fit: contain;
}
.com-xscores-live .xscores-live-match-modal-team{
	cursor: pointer;
}
.com-xscores-live .xscores-live-match-modal-team:hover .team{
	text-decoration: underline;
}
.com-xscores-live .xscores-live-match-modal-score{
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1;
	color: #1a1a1a;
	white-space: nowrap;
}
.com-xscores-live .xscores-live-match-modal-update{
	font-size: 0.72rem;
}

/* Popup action buttons (clearly tappable) */
.com-xscores-live .xscores-live-match-modal .btn{
	border-radius: 24px;
	font-weight: 600;
	padding: 0.65rem 1.25rem;
}
.com-xscores-live .xscores-live-match-modal .xscores-btn-primary{
	background-color: #5c9801;
	color: #fff;
}
.com-xscores-live .xscores-live-match-modal .xscores-btn-primary:hover,
.com-xscores-live .xscores-live-match-modal .xscores-btn-primary:focus{
	background-color: #4a7d01;
	color: #fff;
}
.com-xscores-live .xscores-live-match-modal .xscores-btn-secondary{
	background-color: #fff;
	border: 1px solid #ccc;
	color: #333;
}
.com-xscores-live .xscores-live-match-modal .xscores-btn-secondary:hover,
.com-xscores-live .xscores-live-match-modal .xscores-btn-secondary:focus{
	background-color: #f2f2f2;
	color: #000;
}

/* Single/double match sizing */
.xscores-live-match-single{
	width: 33% !important;
	margin-left: calc(100% / 2 - 16.5%) !important;
}
.xscores-live-match-double{
	width: 50% !important;
}

@media(max-width: 1200px){
	.xscores-live-match-single{
		width: 100% !important;
		margin-left: 0px !important;
	}
	.xscores-live-match-double{
		width: 100% !important;
	}
}
@media(max-width: 768px){
	.com-xscores-live{
		padding-left: 32px;
		padding-right: 32px;
	}
	.com-xscores-live .carousel-control-prev,
	.com-xscores-live .carousel-control-next{
		width: 32px;
	}
}
@media(max-width: 576px){
	.com-xscores-live{
		padding-left: 24px;
		padding-right: 24px;
	}
	.com-xscores-live .carousel-control-prev,
	.com-xscores-live .carousel-control-next{
		width: 24px;
	}
	.com-xscores-live .xscores-live-match-card .score{
		font-size: 1.1rem;
	}
}