@charset "utf-8";
/* CSS Document */

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    
}

.coaches-wrap {
    display: flex;
    flex-direction: column;
}

/* 
.coaches-wrap table {
	width: 45% !important;
}
 */

.coaches-wrap th {
	background-color: #ccc !important;
	padding: 5px !important;
}

.coaches-wrap h3 {
	margin: 5px;
}

.coaches-wrap a {
	margin: -10px;
}

.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
   	padding-left: 10px !important;
   	background: #eee;

}


.coaches-wrap .anchor {
  display: inline-block;
  
  }

.team-list {
	margin: 10px;
}
  
/* 
Tabbed CSS
 */
 
.coach-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.tab-btn {
    padding: 10px 18px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #eee;
}

.tab-btn.active {
    background: #004a99;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}