/* hide search button */
#search-icon {
  display:none;
}

/* shrink logo on scroll - this doesn't work. */
/* Initial Logo State */
.main-navigation .logo-in-menu-wrapper {
    max-height: 80px; /* Change this to your original logo height */
    transition: max-height 0.3s ease-in-out;
}

/* Shrunk Logo State on Scroll (Common for SiteOrigin) */
.main-navigation.sticky .logo-in-menu-wrapper {
    max-height: 45px; /* Change this to your desired shrunken height */
}
/* Shrunk Logo State on Scroll (Common for SiteOrigin) */
.main-navigation.sticky .logo-in-menu-wrapper img {
    max-height: 45px !important;
		padding-right:50px;
}

/* hide "theme by SiteOrigin" in footer  */
#theme-attribution {
  display:none;
}

/* constrain the size of the logo */
#masthead.masthead-logo-in-menu .logo > img.logo-no-height-constrain {
    max-height:75px;
}

/* Tablepress schedule table */
.tablepress-id-1 {
  width:75% !important;
	margin-left:auto !important;
	margin-right:auto !important;
}

.tablepress-id-1 th {
  color:#4CA6A4;
	background-color:#0A0A0A;
}

.tablepress-id-1 td {
  color:#FFFFFF;
}

/* Band Members table */
.tablepress-id-2 {
  width:75% !important;
	margin-left:auto !important;
	margin-right:auto !important;
}

.tablepress-id-2 th {
  color:#4CA6A4;
	background-color:#0A0A0A;
}

.tablepress-id-2 td {
  color:#FFFFFF;
}

/* manage size of image and expand on hover */
.tablepress-id-2 .column-1 img {
  width:75px;
	height:auto;
	transition:all 0.3s ease;
}
.tablepress-id-2 tr:hover img {
  transform:scale(1.2); /* Grows the image by 20% outwards */
  position:relative;
  z-index:10; /* Ensures the image sits on top of neighboring items */
}

/* upper left header cell */
.tablepress-id-2 .row-1 td.column-1 {
	background-color:#0A0A0A;
}