﻿

/* ===== View Teams info =====*/
.teams-info-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.team-info-section {
	border: 1.5px solid #ef4d55;
	border-radius: 18px;
	background: white;
	padding: 18px 20px;
	min-height: 115px;
	display: flex;
	align-items: center;
}

	.team-info-section h4 {
		width: 80%;
	}



.team-details {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
}

	.team-details p {
		margin: 0;
		font-size: 28px;
		font-weight: 700;
		color: #1b1b1b;
		text-transform: uppercase;
	}

		.team-details p strong {
			display: none;
		}

.team-info {
	display: flex;
	align-items: center;
	gap: 14px;
}

	.team-info.reverse {
		flex-direction: row-reverse;
	}
.team-logo img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: white;
	object-fit: contain;
	padding: 4px;
}
.team-logo-large {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 50%;
	background: white;
	padding: 6px;
	border: 2px solid #f2d1d3;
	box-shadow: 0 2px 8px rgba(220,0,0,.25);
	flex-shrink: 0;
}
.team-name-wrap {
	display: flex;
	flex-direction: column;
}

.team-label {
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
}
/* ===== More options  ===== */

.scoreboard-more-options-body {
	padding: 0 12px 14px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}

	.scoreboard-more-options-body .btn-outline-red {
		font-size: 0.9rem;
		width: 70%;
		display: flex;
		align-items: center;
		flex-direction: column;
	}
