/* Плагин - Календарь турнира */

/* Контейнер */
.sporto-calendar-container {
	margin: 20px 0;
	position: relative;
	font-family: Arial, sans-serif;
}

/* Фильтры */
.sporto-calendar-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
	align-items: center;
}

.sporto-calendar-filters .filter-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sporto-calendar-filters label {
	font-weight: 500;
	color: #2c3e50;
	white-space: nowrap;
}

.sporto-calendar-filters select {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	color: #2c3e50;
	font-size: 14px;
	cursor: pointer;
	min-width: 150px;
}

.sporto-calendar-filters select:hover {
	border-color: #3498db;
}

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

/* Адаптивность для экранов менее 767px */
@media (max-width: 767px) {
	.sporto-calendar-filters {
		flex-direction: column;
		gap: 10px;
	}

	.sporto-calendar-filters .filter-group {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.sporto-calendar-filters select {
		width: 100%;
		min-width: 100%;
	}
}

/* Таблица */
.sporto-calendar-table {
	width: 100%;
	overflow-x: auto;
}

.responsive-table {
	overflow-x: auto;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.sporto-calendar {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	text-transform: uppercase;
	min-width: 800px;
}

/* Заголовок таблицы */
.sporto-calendar-table h3.competition-header {
	margin: 20px 0 !important;
	font-family: "Roboto Condensed", sans-serif;
	color: var(--black);
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
}

/* Стили для заголовков и ячеек */
.sporto-calendar th {
	background-color: #2c3e50 !important;
	color: #ffffff;
	font-weight: 500;
	padding: 14px 10px;
	border: 1px solid #e0e0e0;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	cursor: pointer;
	white-space: nowrap;
	/* Запрет переноса текста в шапке */
}


.sporto-calendar td {
	padding: 12px 10px;
	border: 1px solid #e0e0e0;
	color: #2c3e50;
	white-space: nowrap;
	/* Запрет переноса текста в теле таблицы */
	text-align: center;
	background: #fff;
	overflow: visible;
	/* Убираем скрытие текста за многоточием */
}

.sporto-calendar td.text-left {
	text-align: left;
}

/* Чередование строк */
.sporto-calendar tr:nth-child(even) td {
	background-color: #f8f9fa;
}

/* Стили при наведении */
.sporto-calendar tbody tr:hover td {
	background-color: #e8f4f8 !important;
}

/* Фиксированная ширина первого столбца */
.sporto-calendar th:first-child,
.sporto-calendar td:first-child {
	width: 90px;
	min-width: 90px;
	max-width: 90px;
	box-sizing: border-box;
}

/* Фиксированная ширина второго столбца */
.sporto-calendar th:nth-child(2),
.sporto-calendar td:nth-child(2) {
	width: 80px;
	min-width: 80px;
	max-width: 80px;
}

/* Фиксированная ширина третьего столбца */
.sporto-calendar th:nth-child(3),
.sporto-calendar td:nth-child(3) {
	width: 250px;
	min-width: 250px;
	max-width: 250px;
}

/* Фиксированная ширина четвертого столбца */
.sporto-calendar th:nth-child(4),
.sporto-calendar td:nth-child(4) {
	width: 80px;
	min-width: 80px;
	max-width: 80px;
}

/* Фиксированная ширина пятого столбца */
.sporto-calendar th:nth-child(5),
.sporto-calendar td:nth-child(5) {
	width: 250px;
	min-width: 250px;
	max-width: 250px;
}

/* Выравнивание счета (важно!) */
.score {
	text-align: center !important;
}

.score a {
	color: #2c3e50;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.score a:hover {
	color: #3498db;
	text-decoration: underline;
}

/* Выравнивание столбцов */
.team-a {
	text-align: right !important;
}

.team-b {
	text-align: left !important;
}

/* Стили для логотипов и названий команд */
.team-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.team-a .team-wrapper {
	justify-content: flex-end;
}

.team-b .team-wrapper {
	justify-content: flex-start;
}

.sporto-team-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	vertical-align: middle;

	/* flex-shrink: 0;
	display: inline-block;*/
}

.team-name {
	color: var(--secondary-dark);
	text-decoration: none;
	white-space: nowrap;
}

.team-name:hover {
	color: #3498db;
}

/* Адаптация для экранов менее 991px */
@media (max-width: 991px) {

	/* Скрыть логотипы команд */
	.sporto-calendar .team-a .sporto-team-logo,
	.sporto-calendar .team-b .sporto-team-logo {
		display: none;
	}

	/* Показать названия команд */
	.sporto-calendar .team-a .team-name,
	.sporto-calendar .team-b .team-name {
		display: inline-block;
	}

	/* Фиксированная ширина третьего столбца */
	.sporto-calendar th:nth-child(3),
	.sporto-calendar td:nth-child(3) {
		width: 220px;
		min-width: 220px;
		max-width: 220px;
	}

	/* Фиксированная ширина пятого столбца */
	.sporto-calendar th:nth-child(5),
	.sporto-calendar td:nth-child(5) {
		width: 220px;
		min-width: 220px;
		max-width: 220px;
	}

}

/* Исправления для мобильных устройств */
@media (max-width: 767px) {

	/* Скрыть названия команд */
	.sporto-calendar .team-a .team-name,
	.sporto-calendar .team-b .team-name {
		display: none;
	}

	/* Показать логотипы */
	.sporto-calendar .team-a .sporto-team-logo,
	.sporto-calendar .team-b .sporto-team-logo {
		display: inline-block;
	}

	/* Переопределяем inline-стиль display: none */
	.sporto-calendar th:nth-child(3),
	.sporto-calendar th:nth-child(5) {
		display: table-cell !important;
		background-color: #2c3e50 !important;
		position: relative;
	}

	/* Скрываем оригинальный текст ячеек */
	.sporto-calendar th:nth-child(3),
	.sporto-calendar th:nth-child(5) {
		font-size: 0;
	}

	/* Добавляем псевдоэлемент с текстом "А" */
	.sporto-calendar th:nth-child(3)::before {
		content: "А";
		font-size: 14px;
		font-weight: 500;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Аналогично для пятого столбца */
	.sporto-calendar th:nth-child(5)::before {
		content: "Б";
		font-size: 14px;
		font-weight: 500;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	/* Центрируем логотипы */
	.team-a .team-wrapper,
	.team-b .team-wrapper {
		justify-content: center;
	}

	/* Фиксированная ширина третьего столбца */
	.sporto-calendar th:nth-child(3),
	.sporto-calendar td:nth-child(3) {
		width: 80px;
		min-width: 80px;
		max-width: 80px;
	}

	/* Фиксированная ширина пятого столбца */
	.sporto-calendar th:nth-child(5),
	.sporto-calendar td:nth-child(5) {
		width: 80px;
		min-width: 80px;
		max-width: 80px;
	}



}


/* Стили для ошибок */
.sporto-error {
	text-align: center;
	padding: 20px;
	font-size: 14px;
	color: #e74c3c;
}


/* Плагин - Протокол игры */

/* Основные стили */
.sporto-protocol-container {
	margin: 20px 0;
	font-family: 'Roboto Condensed', sans-serif;
	overflow-x: auto;
}

.team-name {
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

/* Wrapper для горизонтального скролла с фиксированными колонками */
.protocol-table-wrapper {
	position: relative;
	overflow-x: auto;
	margin-bottom: 30px;
	-webkit-overflow-scrolling: touch;
}

/* Заголовок команды над таблицей - фиксируется при горизонтальном скролле */
.protocol-table-wrapper h3.team-name {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	z-index: 30;
	background-color: #fff;
	padding: 10px 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #2c3e50;
}

/* Таблица */
.sporto-protocol-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin: 20px 0;
	font-size: 14px;
	text-transform: uppercase;
	min-width: 800px;
	font-family: 'Roboto Condensed', sans-serif;
}

/* Фиксация первых двух колонок */
/* THEAD - фиксация для шапки */
.sporto-protocol-table thead th:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 25 !important;
	background-color: #2c3e50 !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-protocol-table thead th:nth-child(2) {
	position: -webkit-sticky;
	position: sticky;
	left: 44px !important;
	z-index: 25 !important;
	background-color: #2c3e50 !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

/* TBODY - фиксация для тела таблицы */
/* Первая колонка - фиксируется только для обычных строк */
.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total) td:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 15 !important;
	background-color: #fff;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total):nth-child(even) td:nth-child(1) {
	background-color: #f8f9fa;
}

.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total):hover td:nth-child(1) {
	background-color: #e8f4f8 !important;
}

/* Специальные правила для строк тренера и итогов (colspan="2" в первой ячейке) */
.sporto-protocol-table .coach-row td:nth-child(1),
.sporto-protocol-table .grand-total td:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 15 !important;
	background-color: #fff !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

/* Вторая колонка - фиксируется только для обычных строк, НЕ для coach-row и grand-total */
.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total) td:nth-child(2) {
	position: -webkit-sticky;
	position: sticky;
	left: 44px !important;
	z-index: 15 !important;
	background-color: #fff;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total):nth-child(even) td:nth-child(2) {
	background-color: #f8f9fa;
}

.sporto-protocol-table tbody tr:not(.coach-row):not(.grand-total):hover td:nth-child(2) {
	background-color: #e8f4f8 !important;
}

/* Шапка Таблицы */
.sporto-protocol-table th {
	background-color: #2c3e50 !important;
	color: #ffffff;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 900;
	letter-spacing: 0.5px;
	padding: 14px 10px;
	border: 1px solid #e0e0e0;
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
}

/* Выравнивание третьей колонки (Игроки) по левому краю */
.sporto-protocol-table th:nth-child(3) {
	text-align: left;
}

/* Стили для сортируемых заголовков */
.sporto-protocol-table th.stse-sortable {
	cursor: pointer;
	transition: background-color 0.3s;
	position: relative;
	padding-right: 20px !important;
	text-align: center !important;
}

.sporto-protocol-table th.stse-sortable:hover {
	background-color: #34495e !important;
}

.sporto-protocol-table th.stse-sortable::after {
	content: "";
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.sporto-protocol-table th.stse-sortable.asc::after {
	border-bottom: 5px solid #fff;
	opacity: 1;
}

.sporto-protocol-table th.stse-sortable.desc::after {
	border-top: 5px solid #fff;
	opacity: 1;
}

/* Тело таблицы */
.sporto-protocol-table td {
	border: 1px solid #e0e0e0;
	color: #2c3e50;
	white-space: nowrap;
	text-align: center;
	background: #fff;
	vertical-align: middle;
	padding: 2px 6px;
}

/* Специфические колонки */
.sporto-protocol-table th:nth-child(1),
.sporto-protocol-table td:nth-child(1) {
	width: 44px;
	min-width: 44px;
	max-width: 44px;
	font-weight: 900;
}

.sporto-protocol-table th:nth-child(2),
.sporto-protocol-table td:nth-child(2) {
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	padding: 2px;
}


.sporto-protocol-table th:nth-child(3),
.sporto-protocol-table td:nth-child(3) {
	width: 220px;
	min-width: 220px;
	max-width: 220px;
	padding-left: 6px !important;
}

td.player-name {
	text-align: left !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

td.player-name a {
	font-weight: 400;
}

td.text-left {
	padding: 2px 2px 2px 6px !important;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sporto-protocol-table th:nth-child(4),
.sporto-protocol-table td:nth-child(4) {
	width: 66px;
	min-width: 66px;
	max-width: 66px;
	font-weight: 900;
}

.sporto-protocol-table th:nth-child(5),
.sporto-protocol-table td:nth-child(5) {
	width: 252px;
	min-width: 252px;
	max-width: 252px;
}

.sporto-protocol-table th:nth-child(6),
.sporto-protocol-table td:nth-child(6) {
	width: 177px;
	min-width: 177px;
	max-width: 177px;
}

.sporto-protocol-table th:nth-child(n+7),
.sporto-protocol-table td:nth-child(n+7) {
	width: 60px;
	min-width: 60px;
	max-width: 60px;
}

/* Лого команды в шапке протокола */
.sporto-protocol-table thead .team-logo {
	width: 60px !important;
	height: 60px !important;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}

/* Лого команды в теле таблицы (обычный размер) */
.team-logo {
	background: #fff;
	width: 52px;
	height: 52px;
	border-radius: 3px;
	object-fit: cover;
}

/* Фото игроков */
.player-photo {
	width: 52px;
	height: 52px;
	border-radius: 3px !important;
	object-fit: cover;
}

/* Строки итогов */
.team-total td,
.grand-total td {
	background-color: #fff !important;
	font-weight: 900;
}

.coach-row td {
	background-color: #e8f4f8 !important;
}

/* Текстовая выравнивание */

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

/* Чередование строк */
.sporto-protocol-table tr:nth-child(even) td {
	background-color: #f8f9fa;
}

.sporto-protocol-table tbody tr:hover td {
	background-color: #e8f4f8 !important;
}

/* Жирный шрифт для последней колонки (КПИ) в теле таблицы */
.sporto-protocol-table tbody td:last-child {
	font-weight: 900;
}

.sporto-protocol-table thead .team-logo {
	width: 52px !important;
	height: 52px !important;
}

.player-photo {
	width: 52px !important;
	height: 52px !important;
}

.team-name {
	margin-bottom: 0.5px;
}

.protocol-table-wrapper h3.team-name {
	padding: 16px;
	color: #fff;
	text-transform: uppercase;
	font-size: var(--h3);
	font-weight: 900;
	letter-spacing: 1px;
	background-color: #34495e !important;
}

.sporto-protocol-table {
	margin-top: 0.5px;
	font-size: 16px;
}

.sporto-protocol-table tr {
	height: 56px;
}


.text-left {
	font-size: 15px;
}


/* Адаптивность */
@media (max-width: 1200px) {
	.protocol-table-wrapper {
		overflow-x: auto;
		margin-bottom: 30px;
	}
}

/* Ошибки */
.sporto-error {
	color: #e74c3c;
	padding: 15px;
	text-align: center;
	border: 1px solid #e74c3c;
	margin: 20px 0;
}

.debug-info pre {
	background: #f5f5f5;
	padding: 15px;
	overflow-x: auto;
}

/* Таблица состава команды */
.sporto-roster-wrapper {
	position: relative;
	overflow-x: auto;
	margin-bottom: 30px;
	-webkit-overflow-scrolling: touch;
}

.sporto-roster-wrapper h3.roster-team-name {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	z-index: 30;
	font-family: 'Roboto Condensed', sans-serif;
	padding: 16px;
	color: #fff;
	text-transform: uppercase;
	font-size: var(--h3);
	font-weight: 900;
	letter-spacing: 1px;
	background-color: #34495e !important;
}

.sporto-roster-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin: 1px 0;
	font-size: 14px;
	text-transform: uppercase;
	min-width: 800px;
	font-family: 'Roboto Condensed', sans-serif;
}

/* Фиксация первых двух колонок - THEAD */
.sporto-roster-table thead th:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 25 !important;
	background-color: #34495e !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-roster-table thead th:nth-child(2) {
	position: -webkit-sticky;
	position: sticky;
	left: 60px !important;
	z-index: 25 !important;
	background-color: #34495e !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

/* Фиксация первых двух колонок - TBODY */
.sporto-roster-table tbody tr:not(.roster-coach-row) td:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 15 !important;
	background-color: #fff;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-roster-table tbody tr:not(.roster-coach-row):nth-child(even) td:nth-child(1) {
	background-color: #f8f9fa;
}

.sporto-roster-table tbody tr:not(.roster-coach-row):hover td:nth-child(1) {
	background-color: #e8f4f8 !important;
}

.sporto-roster-table tbody tr:not(.roster-coach-row) td:nth-child(2) {
	position: -webkit-sticky;
	position: sticky;
	left: 60px !important;
	z-index: 15 !important;
	background-color: #fff;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-roster-table tbody tr:not(.roster-coach-row):nth-child(even) td:nth-child(2) {
	background-color: #f8f9fa;
}

.sporto-roster-table tbody tr:not(.roster-coach-row):hover td:nth-child(2) {
	background-color: #e8f4f8 !important;
}

/* Фиксация для строк тренеров (colspan) */
.sporto-roster-table .roster-coach-row td:nth-child(1) {
	position: -webkit-sticky;
	position: sticky;
	left: 0 !important;
	z-index: 15 !important;
	background-color: #e8f4f8 !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.sporto-roster-table .roster-coach-row td:nth-child(2) {
	position: -webkit-sticky;
	position: sticky;
	left: 60px !important;
	z-index: 15 !important;
	background-color: #e8f4f8 !important;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

/* Общие стили шапки и ячеек */
.sporto-roster-table th {
	background-color: #34495e !important;
	color: #ffffff;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 900;
	font-size: 16px;
	letter-spacing: 0.5px;
	padding: 16px 8px;
	border: 1px solid #e0e0e0;
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
}

.sporto-roster-table td {
	padding: 2px 6px;
	border: 1px solid #e0e0e0;
	color: #2c3e50;
	white-space: nowrap;
	text-align: center;
	background: #fff;
	vertical-align: middle;
	font-size: 16px;
}

/* Ширина колонок */
.sporto-roster-table th:nth-child(1),
.sporto-roster-table td:nth-child(1) {
	width: 50px;
	min-width: 50px;
	max-width: 50px;
	font-weight: 900;
}

.sporto-roster-table th:nth-child(2),
.sporto-roster-table td:nth-child(2) {
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	padding: 2px !important;
}

.sporto-roster-table th:nth-child(3),
.sporto-roster-table td:nth-child(3) {
	width: 220px;
	min-width: 220px;
	max-width: 220px;
	text-align: left;
	padding-left: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sporto-roster-table th:nth-child(4),
.sporto-roster-table td:nth-child(4) {
	width: 100px;
	min-width: 100px;
	max-width: 100px;
}

.sporto-roster-table th:nth-child(5),
.sporto-roster-table td:nth-child(5) {
	width: 70px;
	min-width: 70px;
	max-width: 70px;
}

.sporto-roster-table th:nth-child(6),
.sporto-roster-table td:nth-child(6) {
	width: 70px;
	min-width: 70px;
	max-width: 70px;
}

/* Столбец "Дата рождения" */
.sporto-roster-table th:nth-child(7),
.sporto-roster-table td:nth-child(7) {
	width: 100px;
	min-width: 100px;
	max-width: 100px;
}

/* Столбец "Гражданство" */
.sporto-roster-table th:nth-child(8),
.sporto-roster-table td:nth-child(8) {
	width: 120px;
	min-width: 120px;
	max-width: 120px;
}

.sporto-roster-table tr:nth-child(even) td {
	background-color: #f8f9fa;
}

.sporto-roster-table tbody tr:hover td {
	background-color: #e8f4f8 !important;
}

.roster-coach-row td {
	background-color: #e8f4f8 !important;
}

.game-video-link {
	margin: 20px 0;
	text-align: center;
	font-weight: 900;
}

.sporto-roster-table th:nth-child(7),
.sporto-roster-table td:nth-child(7) {
	text-align: center !important;
}

.team-name {
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.5px;
}

/* ========================================
   SHORTCODES STYLES
   ======================================== */

/* Базовые стили для шорткодов */
.sporto-shortcode {
	display: inline-block;
	transition: all 0.3s ease;
}

/* Ошибка шорткода */
.sporto-shortcode-error {
	color: #e74c3c;
	font-size: 0.9em;
	font-style: italic;
}

/* Анимация при обновлении шорткода */
.sporto-shortcode-updated {
	animation: shortcode-flash 1s ease-in-out;
}

@keyframes shortcode-flash {
	0% {
		background-color: transparent;
		transform: scale(1);
	}

	30% {
		background-color: #ffeb3b;
		transform: scale(1.05);
		box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
	}

	100% {
		background-color: transparent;
		transform: scale(1);
		box-shadow: none;
	}
}

/* Стили для разных типов шорткодов */
.sporto-score-team-1,
.sporto-score-team-2 {
	font-weight: bold;
	font-size: 1.2em;
	padding: 2px 5px;
	border-radius: 3px;
}

.sporto-score-quarters {
	font-size: 0.9em;
	color: #666;
}

.sporto-live-info {
	font-weight: 500;
	padding: 3px 8px;
	border-radius: 4px;
}

/* Индикатор LIVE для онлайн игр */
.sporto-shortcode[data-game-status="online"],
.sporto-shortcode[data-game-status="Online"] {
	position: relative;
}

.sporto-live-info[data-game-status="online"]::before,
.sporto-live-info[data-game-status="Online"]::before {
	content: "● ";
	color: #e74c3c;
	animation: pulse-live-dot 2s ease-in-out infinite;
}

@keyframes pulse-live-dot {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

/* ========================================
   CPT INTEGRATION STYLES
   ======================================== */

/* Ссылки на игроков в таблицах (Roster и Protocol) */
.roster-col-name a,
.player-name a {
	color: #2c3e50;
	/* Цвет текста таблицы */
	text-decoration: none;
	transition: color 0.2s ease;
}

.roster-col-name a:hover,
.player-name a:hover {
	color: #3498db;
	text-decoration: underline;
}

/* Фикс для логотипа в шапке ростера */
.team-logo-header {
	background: #fff;
	width: 52px;
	height: 52px;
	border-radius: 3px;
	object-fit: cover;
	width: auto;
	vertical-align: middle;
	display: inline-block;
}