/**
 * SZĽH API Shortcodes Styles
 * Styling for standings tables, match cards, roster and match detail
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800;900&display=swap');

.szlh-matches-wrapper,
.szlh-match-detail-wrapper,
.szlh-standings-wrapper,
.szlh-roster-wrapper,
.szlh-match-box,
.szlh-year-tab,
.szlh-box-btn,
.szlh-date-dow,
.szlh-date-month {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

/* =========================================================================
   Common
   ========================================================================= */
.szlh-table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.szlh-no-data,
.szlh-error {
	padding: 15px 20px;
	margin: 10px 0;
	border-radius: 6px;
	font-size: 14px;
}

.szlh-no-data {
	background: #f0f0f0;
	color: #666;
	text-align: center;
}

.szlh-error {
	background: #fef0f0;
	color: #c00;
	border-left: 4px solid #c00;
}

/* =========================================================================
   Standings Table
   ========================================================================= */
.szlh-standings-wrapper {
	margin: 20px 0;
}

.szlh-standings-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.szlh-standings-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: #fff;
}

.szlh-standings-table thead {
	background: #002857;
	color: #fff;
}

.szlh-standings-table thead th {
	padding: 10px 8px;
	font-weight: 600;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.szlh-standings-table thead th.szlh-col-team {
	text-align: left;
}

.szlh-standings-table tbody td {
	padding: 8px;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.szlh-standings-table tbody td.szlh-col-team {
	text-align: left;
	font-weight: 600;
	vertical-align: middle;
	white-space: nowrap;
}

.szlh-standings-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	vertical-align: middle;
	margin-right: 10px;
	display: inline-block;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 0 !important;
}

.szlh-standings-team-name {
	vertical-align: middle;
	display: inline-block;
}

.szlh-standings-table tbody td.szlh-col-rank {
	font-weight: 700;
	color: #888;
}

.szlh-standings-table tbody td.szlh-col-points {
	font-weight: 700;
	font-size: 15px;
}

.szlh-standings-table tbody tr:hover {
	background: #f5f5f5;
}

.szlh-standings-table tbody tr.szlh-highlight {
	background: rgba(0, 40, 87, 0.08);
	font-weight: 600;
}

.szlh-standings-table tbody tr.szlh-highlight td.szlh-col-team {
	color: #002857;
	font-weight: 700;
}

.szlh-standings-table tbody tr.szlh-highlight:hover {
	background: rgba(0, 40, 87, 0.14);
}

/* =========================================================================
   Matches
   ========================================================================= */
/* =========================================================================
   Matches — Box Cards Grid (Design matching reference image)
   ========================================================================= */
/* Year Tabs Bar (Taste Skill Segmented Hardware Pill Architecture) */
.szlh-year-tabs-bar {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f1f5f9;
	padding: 5px;
	border-radius: 30px;
	border: 1px solid #cbd5e1;
	margin-bottom: 25px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.szlh-year-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #475569;
	border: none;
	padding: 8px 18px;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	outline: none;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.szlh-year-tab:hover:not(.active) {
	background: rgba(255, 255, 255, 0.7);
	color: #0f172a;
}

.szlh-year-tab.active {
	background: linear-gradient(135deg, #002857 0%, #001938 100%);
	color: #ffffff;
	border: 1px solid rgba(229, 168, 35, 0.4);
	box-shadow: 0 4px 12px rgba(0, 40, 87, 0.3);
}

.szlh-tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 800;
	background: rgba(0, 40, 87, 0.08);
	color: #002857;
	transition: all 0.2s ease;
}

.szlh-year-tab.active .szlh-tab-count {
	background: #e5a823;
	color: #001a3a;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.szlh-matches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin: 25px 0;
}

.szlh-match-box {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.szlh-match-box:hover {
	box-shadow: 0 18px 42px -8px rgba(0, 40, 87, 0.18), 0 8px 18px -4px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 40, 87, 0.3);
}

/* Header Bar */
.szlh-match-box-header {
	background: linear-gradient(135deg, #031329 0%, #002857 60%, #001f44 100%);
	color: #ffffff;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.szlh-match-date-badge {
	display: flex;
	align-items: center;
	gap: 12px;
}

.szlh-date-day {
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -1px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 6px 12px;
	border-radius: 10px;
	color: #ffffff;
}

.szlh-date-meta {
	display: flex;
	flex-direction: column;
}

.szlh-date-month {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.2;
	color: #ffffff;
}

.szlh-date-dow {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	line-height: 1.2;
}

.szlh-match-time {
	font-size: 12px;
	font-weight: 800;
	background: rgba(229, 168, 35, 0.15);
	color: #e5a823;
	border: 1px solid rgba(229, 168, 35, 0.3);
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 0.5px;
}

/* Body: Logos & Score */
.szlh-match-box-body {
	padding: 24px 18px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.szlh-box-team {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.szlh-box-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.14));
}

.szlh-box-score-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 38px;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
}

.szlh-box-score-num {
	min-width: 32px;
	text-align: center;
	font-family: inherit;
}

.szlh-box-colon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #64748b;
	font-weight: 800;
}

.szlh-box-vs-badge {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #002857 0%, #001735 100%);
	color: #e5a823;
	padding: 4px 10px;
	border-radius: 20px;
	border: 1px solid rgba(229, 168, 35, 0.3);
}

/* Info Section */
.szlh-match-box-info {
	padding: 0 18px 18px;
	text-align: center;
}

.szlh-box-teams-title {
	font-size: 13px;
	font-weight: 800;
	color: #1e293b;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 4px;
	line-height: 1.3;
}

.szlh-box-arena {
	font-size: 12px;
	color: #64748b;
	font-weight: 500;
}

/* Footer Buttons (Taste Skill Island CTA) */
.szlh-match-box-footer {
	padding: 12px 14px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	background: #f8fafc;
}

.szlh-box-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	height: 34px;
	min-width: 120px;
	padding: 0 16px;
	box-sizing: border-box;
	border-radius: 24px;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 6px rgba(0, 40, 87, 0.15);
	cursor: pointer;
	white-space: nowrap;
	margin: 0;
	vertical-align: middle;
	outline: none;
}

.szlh-box-btn:hover {
	background: linear-gradient(135deg, #003878 0%, #002857 100%);
	color: #ffffff !important;
	border-color: rgba(229, 168, 35, 0.4);
}

.szlh-box-btn svg {
	fill: currentColor;
	flex-shrink: 0;
}

/* Gallery Button */
.szlh-box-btn.szlh-btn-gallery {
	background: linear-gradient(135deg, #0a1f3d 0%, #00142e 100%);
	color: #e5a823 !important;
	border: 1px solid rgba(229, 168, 35, 0.4);
	box-shadow: 0 2px 8px rgba(0, 40, 87, 0.2);
}

.szlh-box-btn.szlh-btn-gallery svg {
	color: #e5a823;
	fill: none;
	stroke: currentColor;
}

.szlh-box-btn.szlh-btn-gallery:hover {
	background: linear-gradient(135deg, #e5a823 0%, #ca8a04 100%);
	color: #001938 !important;
	border-color: #e5a823;
	box-shadow: 0 4px 12px rgba(229, 168, 35, 0.35);
}

.szlh-box-btn.szlh-btn-gallery:hover svg {
	color: #001938;
}

.szlh-box-btn.szlh-btn-loading {
	opacity: 0.75;
	cursor: wait;
	pointer-events: none;
}

.szlh-spin-icon {
	display: inline-block;
	animation: szlhSpin 1s linear infinite;
}

@keyframes szlhSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* =========================================================================
   Match Detail
   ========================================================================= */
.szlh-match-detail-wrapper {
	margin: 20px 0;
}

/* =========================================================================
   Match Detail Header & Scoreboard (Taste Skill Modern Design)
   ========================================================================= */
.szlh-match-detail-wrapper {
	margin: 24px 0 40px;
}

.szlh-match-detail-header {
	background: linear-gradient(135deg, #031329 0%, #002857 55%, #051a38 100%);
	color: #ffffff;
	padding: 36px 28px 28px;
	border-radius: 16px;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	box-shadow: 0 12px 32px rgba(0, 40, 87, 0.25);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.szlh-match-detail-header::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(229, 168, 35, 0.12) 0%, rgba(0, 40, 87, 0) 70%);
	pointer-events: none;
}

.szlh-detail-meta-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 18px;
	border-radius: 30px;
	margin-bottom: 28px;
	position: relative;
	z-index: 2;
}

.szlh-detail-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #cbd5e1;
}

.szlh-detail-meta-item svg {
	color: #e5a823;
}

.szlh-detail-meta-dot {
	color: rgba(255, 255, 255, 0.3);
	font-size: 10px;
}

.szlh-match-detail-teams {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	position: relative;
	z-index: 2;
}

.szlh-team-home-block,
.szlh-team-away-block {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 16px;
}

.szlh-team-home-block {
	justify-content: flex-end;
}

.szlh-team-away-block {
	justify-content: flex-start;
}

.szlh-detail-logo-wrap {
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.szlh-detail-logo-wrap:hover {
	transform: scale(1.08);
}

.szlh-match-detail-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.szlh-team-home-name,
.szlh-team-away-name {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #ffffff;
}

.szlh-team-poprad .szlh-team-home-name,
.szlh-team-poprad .szlh-team-away-name {
	color: #e5a823;
	text-shadow: 0 0 12px rgba(229, 168, 35, 0.3);
}

.szlh-detail-score-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.szlh-score-digital-wrap {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 10px 28px;
	border-radius: 14px;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.szlh-match-detail-score {
	font-size: 48px;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 4px;
	line-height: 1;
	color: #ffffff;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.szlh-score-colon {
	color: #e5a823;
}

.szlh-match-detail-result-badge {
	margin-top: 10px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	background: #e5a823;
	color: #001a3a;
	padding: 3px 12px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(229, 168, 35, 0.3);
}

.szlh-match-detail-periods {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.szlh-period-pill {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #cbd5e1;
	transition: all 0.2s ease;
}

.szlh-period-pill:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.szlh-p-name {
	color: #94a3b8;
	margin-right: 4px;
}

.szlh-p-val {
	color: #ffffff;
	font-weight: 800;
}

/* =========================================================================
   Timeline Events Section (Taste Skill Modern Stream)
   ========================================================================= */
.szlh-match-timeline-section {
	margin: 36px 0;
}

.szlh-section-title {
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #002857;
	border-left: 4px solid #002857;
	padding-left: 12px;
}

.szlh-timeline-period {
	margin-bottom: 24px;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 40, 87, 0.06);
	border: 1px solid #e2e8f0;
}

.szlh-period-header {
	background: linear-gradient(90deg, #002857 0%, #004085 100%);
	color: #ffffff;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.szlh-timeline-list {
	display: flex;
	flex-direction: column;
}

.szlh-timeline-row {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	border-bottom: 1px solid #f1f5f9;
	gap: 14px;
	font-size: 14px;
	transition: background 0.15s ease;
}

.szlh-timeline-row:last-child {
	border-bottom: none;
}

.szlh-timeline-row:hover {
	background: #f8fafc;
}

/* Goal Highlight Row */
.szlh-timeline-row.szlh-timeline-goal {
	background: #f0fdf4;
	border-left: 4px solid #10b981;
}

/* Penalty Highlight Row */
.szlh-timeline-row.szlh-timeline-penalty {
	background: #fffbeb;
	border-left: 4px solid #f59e0b;
}

.szlh-tl-time {
	font-weight: 800;
	font-size: 12px;
	color: #ffffff;
	background: #002857;
	padding: 4px 10px;
	border-radius: 6px;
	min-width: 52px;
	text-align: center;
	flex-shrink: 0;
	font-family: monospace;
}

.szlh-tl-badge {
	font-size: 11px;
	font-weight: 900;
	padding: 4px 10px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

.szlh-badge-goal {
	background: #10b981;
	color: #ffffff;
	box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.szlh-badge-penalty {
	background: #f59e0b;
	color: #ffffff;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.szlh-badge-timeout {
	background: #64748b;
	color: #ffffff;
}

.szlh-tl-content {
	flex: 1;
	color: #1e293b;
	line-height: 1.4;
}

.szlh-tl-player {
	font-weight: 700;
	color: #0f172a;
}

.szlh-tl-assists {
	color: #64748b;
	font-size: 13px;
}

.szlh-tl-sit {
	color: #0284c7;
	font-weight: 700;
	font-size: 12px;
	margin-left: 4px;
}

.szlh-tl-reason {
	color: #b45309;
	font-size: 13px;
}

.szlh-tl-team-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
}

/* Lineups Section */
.szlh-match-lineups-section {
	margin: 36px 0;
}

.szlh-lineups-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.szlh-lineup-card {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 40, 87, 0.05);
}

.szlh-lineup-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: linear-gradient(135deg, #002857 0%, #001a3a 100%);
	color: #ffffff;
}

.szlh-lineup-header h4 {
	margin: 0;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.szlh-lineup-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.szlh-lineup-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.szlh-lineup-table thead th {
	background: #f8fafc;
	padding: 10px 14px;
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	text-transform: uppercase;
	border-bottom: 1px solid #e2e8f0;
	letter-spacing: 0.5px;
}

.szlh-lineup-table tbody td {
	padding: 8px 14px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}

.szlh-lineup-table tbody tr:last-child td {
	border-bottom: none;
}

.szlh-lineup-table tbody tr:hover {
	background: #f8fafc;
}

.szlh-lp-name {
	font-weight: 600;
	color: #0f172a;
}

/* =========================================================================
   Roster
   ========================================================================= */
.szlh-roster-wrapper {
	margin: 20px 0;
}

.szlh-roster-group-title {
	font-size: 16px;
	font-weight: 700;
	margin: 20px 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding-bottom: 6px;
	border-bottom: 2px solid #002857;
	color: #002857;
}

.szlh-roster-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: #fff;
	margin-bottom: 20px;
}

.szlh-roster-table thead {
	background: #002857;
	color: #ffffff;
}

.szlh-roster-table thead th {
	padding: 10px 10px;
	font-weight: 600;
	font-size: 12px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #ffffff;
}

.szlh-roster-table tbody td {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.szlh-roster-table tbody tr:nth-child(even) {
	background: #f9f9f9;
}

.szlh-roster-table tbody tr:nth-child(odd) {
	background: #ffffff;
}

.szlh-roster-table tbody tr:hover {
	background: #f0f4f9;
}

.szlh-roster-table .szlh-col-jersey {
	font-weight: 700;
	color: #1a1a2e;
	width: 40px;
	text-align: center;
}

.szlh-roster-table .szlh-col-name,
.szlh-roster-table th.szlh-col-name,
.szlh-roster-table td.szlh-col-name {
	font-weight: 600;
	text-align: left !important;
	min-width: 150px;
}

.szlh-player-name-cell {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	text-align: left !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.szlh-player-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: contain;
	border: 1.5px solid #e2e8f0;
	background: #f8fafc;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.szlh-player-avatar-placeholder {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #002857 0%, #001938 100%);
	color: #e5a823;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 40, 87, 0.2);
}

.szlh-player-name-text {
	font-weight: 700;
	color: #0f172a;
	white-space: normal !important;
	word-break: break-word !important;
	overflow-wrap: break-word !important;
	min-width: 0 !important;
}

/* Back button bar (Taste Skill Island Button Architecture) */
.szlh-back-bar {
	margin-bottom: 24px;
	display: block;
}

.szlh-back-bar a.szlh-back-link,
a.szlh-back-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	background: linear-gradient(135deg, #002857 0%, #001938 100%) !important;
	color: #ffffff !important;
	padding: 8px 22px 8px 10px !important;
	border-radius: 30px !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	text-decoration: none !important;
	letter-spacing: 0.5px !important;
	text-transform: uppercase !important;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 4px 14px rgba(0, 40, 87, 0.25) !important;
}

.szlh-back-bar a.szlh-back-link .szlh-back-icon-wrap,
a.szlh-back-link .szlh-back-icon-wrap {
	width: 32px !important;
	height: 32px !important;
	background: rgba(255, 255, 255, 0.12) !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #e5a823 !important;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, color 0.2s ease !important;
	flex-shrink: 0 !important;
}

.szlh-back-bar a.szlh-back-link .szlh-back-text,
a.szlh-back-link .szlh-back-text {
	color: #ffffff !important;
}

.szlh-back-bar a.szlh-back-link:hover,
a.szlh-back-link:hover {
	background: linear-gradient(135deg, #003a80 0%, #002857 100%) !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(0, 40, 87, 0.4) !important;
	border-color: rgba(229, 168, 35, 0.5) !important;
}

.szlh-back-bar a.szlh-back-link:hover .szlh-back-icon-wrap,
a.szlh-back-link:hover .szlh-back-icon-wrap {
	transform: translateX(-4px) !important;
	background: #e5a823 !important;
	color: #001a3a !important;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 768px) {
	/* Responsive mobile tabs bar */
	.szlh-year-tabs-bar {
		display: flex;
		width: 100%;
		max-width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 4px;
		margin-bottom: 20px;
		border-radius: 24px;
		box-sizing: border-box;
		scrollbar-width: none; /* Hide scrollbar Firefox */
	}

	.szlh-year-tabs-bar::-webkit-scrollbar {
		display: none; /* Hide scrollbar Chrome/Safari */
	}

	.szlh-year-tab {
		flex: 1 0 auto;
		justify-content: center;
		white-space: nowrap;
		padding: 7px 12px;
		font-size: 12px;
	}

	.szlh-tab-count {
		padding: 1px 6px;
		font-size: 10px;
	}

	/* Wrapper and grid mobile padding & side margins */
	.szlh-matches-wrapper {
		padding-left: 6px;
		padding-right: 6px;
	}

	.szlh-matches-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin: 15px 0;
	}

	.szlh-match-box {
		margin-left: 5px;
		margin-right: 5px;
	}

	/* Match Detail Mobile Margins & Padding */
	.szlh-match-detail-wrapper {
		padding-left: 4px;
		padding-right: 4px;
		max-width: 100%;
		overflow-x: hidden;
	}

	.szlh-back-bar {
		margin-left: 4px;
		margin-right: 4px;
		margin-bottom: 16px;
	}

	.szlh-match-detail-header {
		margin-left: 4px;
		margin-right: 4px;
		padding: 16px 10px;
		box-sizing: border-box;
		max-width: 100%;
		overflow: hidden;
	}

	.szlh-detail-meta-pill {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px 10px;
		padding: 8px 12px;
		border-radius: 18px;
		max-width: 100%;
		box-sizing: border-box;
		margin-bottom: 20px;
		text-align: center;
	}

	.szlh-detail-meta-item {
		font-size: 11px;
	}

	.szlh-detail-meta-dot {
		display: none;
	}

	.szlh-timeline-period,
	.szlh-lineup-card {
		margin-left: 4px;
		margin-right: 4px;
		box-sizing: border-box;
	}

	.szlh-section-title {
		margin-left: 4px;
		margin-right: 4px;
	}

	.szlh-timeline-row {
		padding: 10px 8px;
		gap: 8px;
		font-size: 12px;
		box-sizing: border-box;
		width: 100%;
		overflow: hidden;
	}

	.szlh-tl-content {
		min-width: 0;
		word-break: break-word;
	}

	.szlh-tl-team-logo {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
		margin-left: auto;
	}

	.szlh-tl-time {
		min-width: 38px;
		font-size: 11px;
		padding: 3px 6px;
	}

	.szlh-standings-table {
		font-size: 12px;
	}

	.szlh-standings-table thead th,
	.szlh-standings-table tbody td {
		padding: 6px 4px;
	}

	.szlh-match-teams {
		font-size: 13px;
		gap: 8px;
	}

	.szlh-match-score {
		font-size: 16px;
		padding: 4px 10px;
		min-width: 60px;
	}

	.szlh-match-detail-teams {
		flex-direction: column;
		gap: 14px;
		align-items: center;
	}

	.szlh-team-home-block,
	.szlh-team-away-block {
		justify-content: center;
		width: 100%;
	}

	.szlh-match-detail-score {
		font-size: 28px;
	}

	.szlh-match-detail-periods {
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
	}
}

/* =========================================================================
   Pagination Bar (Active ONLY on VŠETKY tab)
   ========================================================================= */
.szlh-matches-pagination-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 35px 0 15px;
	flex-wrap: wrap;
}

.szlh-page-btn {
	background: #ffffff;
	color: #334155;
	border: 1px solid #cbd5e1;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
}

.szlh-page-btn:hover:not(.disabled) {
	background: #002857;
	color: #ffffff;
	border-color: #002857;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 40, 87, 0.2);
}

.szlh-page-btn.active {
	background: #002857;
	color: #ffffff;
	border-color: #002857;
	box-shadow: 0 3px 10px rgba(0, 40, 87, 0.3);
}

.szlh-page-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background: #f1f5f9;
	color: #94a3b8;
}

.szlh-page-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-weight: 700;
	font-size: 14px;
	padding: 0 4px;
	min-width: 24px;
	user-select: none;
}

/* =========================================================================
   Live / Featured Match Hero Banner [szlh_live_match]
   ========================================================================= */
.szlh-live-banner {
	position: relative;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	/* padding: 24px 10px; */
	/* margin: 20px 0; */
	overflow: hidden;
	box-shadow: none !important;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
	box-sizing: border-box;
}

.szlh-live-banner *,
.szlh-live-banner *::before,
.szlh-live-banner *::after {
	box-sizing: border-box;
	border-radius: 0 !important; /* No rounded corners anywhere in design */
}

/* Corner Dot Matrix Accents (from reference image) */
.szlh-live-dots {
	position: absolute;
	top: 10px;
	z-index: 1;
	opacity: 0.75;
	pointer-events: none;
	user-select: none;
}

.szlh-live-dots svg {
	display: block;
}

.szlh-dots-left {
	left: 10px;
}

.szlh-dots-right {
	right: 10px;
}

/* Giant Center Background Watermark (e.g. LIVE / VS) */
.szlh-live-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(90px, 18vw, 220px);
	font-weight: 900;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #0f172a;
	opacity: 0.04;
	line-height: 0.85;
	z-index: 1;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	text-align: center;
}/* Top Header (Status Badge Pill) */
.szlh-live-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

/* Main Inner Container (Scoreboard Row) */
.szlh-live-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	gap: clamp(20px, 3.5vw, 60px);
}

/* Team Blocks (Left & Right) - Names Above Logo */
.szlh-live-team {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
}

.szlh-team-home {
	align-items: center;
}

.szlh-team-away {
	align-items: center;
}

/* Logos (max 280px with fluid scaling - static, no zoom) */
.szlh-live-logo-wrap {
	width: clamp(140px, 16vw, 280px);
	height: clamp(140px, 16vw, 280px);
	max-width: 280px;
	max-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transform: none !important;
	transition: none !important;
}

.szlh-live-logo {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12));
	transform: none !important;
	transition: none !important;
}

/* Team Names (Subtitle + Bold Name - Centered Above Logo) */
.szlh-live-team-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-height: 56px;
	justify-content: flex-end;
}

.szlh-team-subtitle {
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 4px;
	line-height: 1.2;
	text-align: center;
}

.szlh-team-name {
	font-size: clamp(22px, 2.5vw, 38px);
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #25314d;
	line-height: 1.1;
	margin: 0;
	text-align: center;
}

/* Center Scoreboard Block */
.szlh-live-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-width: 200px;
	flex-shrink: 0;
	padding: 0 10px;
}

/* Status Tag / Badge (Sharp, cohesive brand aesthetic) */
.szlh-live-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 0 !important;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #25314d;
	color: #ffffff;
	border: none !important;
	box-shadow: 0 4px 12px rgba(37, 49, 77, 0.18);
	line-height: 1.2;
}

.szlh-live-status-pill svg {
	color: #6fb2e3;
	flex-shrink: 0;
}

/* Live Specific Pill */
.szlh-is-live .szlh-live-status-pill {
	background: #dc2626;
	color: #ffffff;
	border: none !important;
	box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

/* Finished Specific Pill */
.szlh-is-finished .szlh-live-status-pill {
	background: #475569;
	color: #ffffff;
	border: none !important;
	box-shadow: 0 4px 12px rgba(71, 85, 105, 0.18);
}

/* Pulsating Dot for LIVE */
.szlh-live-pulse-dot {
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50% !important; /* Keep circle dot for pulse */
	display: inline-block;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	animation: szlhLivePulse 1.6s infinite;
}

@keyframes szlhLivePulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

/* Score / VS */
.szlh-live-score-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 10px 0;
	line-height: 1;
}

.szlh-live-digit {
	font-size: clamp(54px, 6.5vw, 84px);
	font-weight: 900;
	color: #25314d;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.szlh-live-colon {
	font-size: clamp(44px, 5.5vw, 74px);
	font-weight: 800;
	color: #6fb2e3;
	line-height: 0.9;
	margin: 0 2px;
}

.szlh-live-vs {
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 900;
	letter-spacing: 3px;
	color: #25314d;
	line-height: 1;
}

/* Period Scores */
.szlh-live-periods {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: #64748b;
	margin-bottom: 0;
}

/* Bottom Footer (Arena & Action Buttons) */
.szlh-live-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	/* margin-top: 12px; */
	position: relative;
	z-index: 2;
}

/* Arena */
.szlh-live-arena {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #94a3b8;
}

.szlh-live-arena svg {
	color: #6fb2e3;
	flex-shrink: 0;
}

/* Action Buttons (Sharp rectangular design, generous spacing) */
.szlh-live-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	flex-wrap: wrap;
}

.szlh-live-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 0 !important; /* Sharp corners */
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: all 0.25s ease;
	cursor: pointer;
	line-height: 1;
}

.szlh-btn-overview {
	background: #25314d;
	color: #ffffff !important;
	border: 2px solid #25314d;
}

.szlh-btn-overview:hover {
	background: #6fb2e3;
	border-color: #6fb2e3;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(111, 178, 227, 0.35);
}

.szlh-btn-disabled {
	opacity: 0.45 !important;
	cursor: not-allowed !important;
	pointer-events: auto !important;
	background: #94a3b8 !important;
	color: #f1f5f9 !important;
	border: 2px solid #94a3b8 !important;
	box-shadow: none !important;
	transform: none !important;
}

.szlh-btn-disabled:hover {
	background: #94a3b8 !important;
	color: #f1f5f9 !important;
	border-color: #94a3b8 !important;
	transform: none !important;
	box-shadow: none !important;
}

.szlh-btn-tickets {
	background: #6fb2e3;
	color: #ffffff !important;
	border: 2px solid #6fb2e3;
}

.szlh-btn-tickets:hover {
	background: #25314d;
	border-color: #25314d;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(37, 49, 77, 0.25);
}

.szlh-btn-stream {
	background: #dc2626;
	color: #ffffff !important;
	border: 2px solid #dc2626;
}

.szlh-btn-stream:hover {
	background: #b91c1c;
	border-color: #b91c1c;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

/* =========================================================================
   Responsive Breakpoints for [szlh_live_match]
   ========================================================================= */
@media (max-width: 1200px) {
	.szlh-live-logo-wrap {
		width: clamp(130px, 16vw, 240px);
		height: clamp(130px, 16vw, 240px);
	}
}

@media (max-width: 1024px) {
	.szlh-live-banner {
		padding: 20px 10px;
	}
	.szlh-live-inner {
		gap: 16px;
	}
	.szlh-live-team {
		gap: 12px;
	}
	.szlh-live-logo-wrap {
		width: clamp(110px, 14vw, 190px);
		height: clamp(110px, 14vw, 190px);
	}
	.szlh-live-center {
		min-width: 180px;
	}
}

@media (max-width: 768px) {
	.szlh-live-banner {
		padding: 20px 6px;
	}

	.szlh-live-dots {
		display: none; /* Hide dots on small screens */
	}

	.szlh-live-header {
		margin-bottom: 14px;
	}

	.szlh-live-status-pill {
		padding: 6px 14px;
		font-size: 10px;
		letter-spacing: 1px;
	}

	/* 3-Column Scoreboard Row: Home - Score/VS - Away */
	.szlh-live-inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: 100%;
		margin: 0 auto;
	}

	.szlh-live-team {
		width: 100%;
		gap: 6px;
		text-align: center;
	}

	.szlh-live-team-text {
		min-height: auto;
	}

	.szlh-team-subtitle {
		font-size: 10px;
		letter-spacing: 1px;
		margin-bottom: 2px;
	}

	.szlh-team-name {
		font-size: clamp(13px, 3.6vw, 17px);
		line-height: 1.1;
		word-break: break-word;
	}

	.szlh-live-logo-wrap {
		width: clamp(70px, 20vw, 100px);
		height: clamp(70px, 20vw, 100px);
		max-width: 100px;
		max-height: 100px;
	}

	.szlh-live-center {
		min-width: auto;
		padding: 0 4px;
	}

	.szlh-live-score-wrap {
		gap: 4px;
		margin: 0 0 4px 0;
	}

	.szlh-live-digit {
		font-size: clamp(32px, 8vw, 44px);
	}

	.szlh-live-colon {
		font-size: clamp(26px, 6.5vw, 36px);
	}

	.szlh-live-vs {
		font-size: clamp(24px, 6vw, 34px);
		letter-spacing: 1px;
	}

	.szlh-live-periods {
		font-size: 11px;
		letter-spacing: 0.5px;
		margin-bottom: 0;
	}

	/* Bottom Footer: Arena & Buttons */
	.szlh-live-footer {
		margin-top: 14px;
		gap: 8px;
		width: 100%;
	}

	.szlh-live-arena {
		font-size: 11px;
		text-align: center;
	}

	.szlh-live-actions {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 280px;
		gap: 8px;
		margin: 0 auto;
	}

	.szlh-live-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 16px;
		font-size: 11px;
	}
}
