/* Standalone stylesheet for showPlayer.php - deliberately matches the look of the
   original showPlayer.asp (styles/tabbedContent.css: dark grey #454545 chrome, tan
   #ece7d9 table headers) rather than the public site's red/black site.css theme, since
   this is a self-contained popup opened in a fancybox iframe, same as showGame.php. */

* { box-sizing: border-box; }

body {
	font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, sans-serif;
	font-size: 12px;
	color: #000;
	background: #454545;
	margin: 0;
	padding: 8px;
}

.showplayer-empty { color: #fff; padding: 1em; }

.showplayer-header {
	background: #454545;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 6px 8px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.showplayer-filters {
	background: #454545;
	color: #fff;
	padding: 6px 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 6px;
	font-size: 11px;
}
.showplayer-filters select {
	font-family: inherit;
	font-size: 11px;
	padding: 1px;
}

.showplayer-tabs {
	background: #454545;
	display: flex;
	flex-wrap: wrap;
}
.showplayer-tab {
	appearance: none;
	border: none;
	background: #8c8c8c;
	color: #fff;
	font-family: inherit;
	font-size: 11pt;
	font-weight: bold;
	padding: 6px 14px;
	margin-right: 1px;
	cursor: pointer;
}
.showplayer-tab:hover { background: #a3a3a3; }
.showplayer-tab.is-active { background: #ece7d9; color: #000; }

.showplayer-panels {
	background: #fff;
	padding: 10px;
	overflow-x: auto;
}
.showplayer-panel { display: none; }
.showplayer-panel.is-active { display: block; }
.showplayer-loading { color: #666; padding: 1em 0; }

.leftbox { float: left; width: 49%; }
.rightbox { float: right; width: 49%; }
.showplayer-gap { padding-top: 6px; }
.showplayer-side-by-side { width: 100%; border-collapse: collapse; }
.showplayer-side-by-side > tbody > tr > td { width: 50%; vertical-align: top; padding: 0 3px; }

.datatable {
	font-size: 12px;
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 8px;
}
.datatable th {
	padding: 4px;
	font-weight: bold;
	font-size: 11pt;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	background: #ece7d9;
	text-align: center;
}
.datatable td {
	border-top: 1px solid #000;
	padding: 2px 4px;
	text-align: center;
}
.datatable tr:hover td { color: #fff; background: #fc696f; }
.datatable a:link, .datatable a:visited { color: #000; text-decoration: underline; }
.datatable a:hover { color: #8c8c8c; }
.datatable__spacer { width: 4px; background: #000; padding: 0; border: none; }
.summary-row--continued td { border-top: none; }

canvas { max-width: 100%; }
