﻿/* CSS used as an add-on to the bootstrap styling */
html {
	background-color: #222;
	box-shadow: 0px 2px 8px #000;
}

body, ipsExternalWidget {
	color: #333;
	text-align: left;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
}

a {
	color: #00a2a1;
}
	a:hover {
		color: #1fc4c3;
	}

hr {
  margin-bottom: 20px;
}

img.player-card {
	position: relative;
	padding: 0px;
	margin: 0px;
	text-align: center;
	height: 48px;
	width: 48px;
	top: -8px;
	margin-bottom: -16px;
}

.page-item.active .page-link {
	background-color: #00a2a1;
	border-color: #00a2a1;
}
.page-link {
	color: #00a2a1;
}

div.siteheader {
	background-color: #3e454d;
	background-image: url(/images/2021header-bg.png);
	background-repeat: repeat;
}

div.sitebg {
	background-image: url(/images/homepage-bg.gif);
	background-repeat: repeat;
}

div.sitefooter {
	background-color: #343a40;
	text-align: center;
	color: #DDD;
	width: 100%;
	margin-top: 20px;
	padding: 5px;
}

.margin_top {
	margin-top: 20px;
}
.team-profile-dropdown {
	margin: 3px;
}
.team-profile-dropdown-item {
	z-index: 1200;
}

/* BOOTSTRAP OVERRIDES */

.panel-default {
	background-color: #FFF;
	border: 2px solid #DDD;
	border-radius: 8px;
	padding: 10px;
}
.navbar, .navbar-brand {
	padding: 0px;
	margin: 0px;
}
.navbar {
	border-bottom: 4px solid #DDD;
	box-shadow: 0px 0px 6px #555;
}
.nav-link {
	padding: 4px;
	margin: 4px;
	white-space: nowrap;
}
.card {
	width: 9.5rem;
	opacity: 0.8;
}
.table td {
    vertical-align: middle;
}


/* NOT SURE IF THESE ARE USED */

.anchor{
  display: block;
  height: 120px; /*same height as header*/
  margin-top: -120px; /*same height as header*/
  visibility: hidden;
}
/* The Magic Float Center Code */
.float_center {
  float: right;
  position: relative;
  left: -50%; /* or right 50% */
  text-align: left;
}
.float_center > .child {
  position: relative;
  left: 50%;
}
.clear {
  clear: both;
}