@import url("t10-table-types.css");
/*+++ |=== GAME INFO BOARD SECTION ===| +++*/
.game-info-board-container {
}

.game-info-board-div {
    /* display: flex; */
    /* justify-content: center; */
}

/*+++ |=== MATCHUP RESULT SECTION ===| +++*/

.match-result-container {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 23px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.match-result-div {
    background-color: var(--grey-1);
    border-radius: 6px;
}

.match-result-div a {
    text-decoration: none;
    cursor: pointer;
}

.game-date {
    border-radius: 6px;
}

.game-date:hover {
    /* background-color: var(--primary-two-2); */
}

.game-date, .match-result, .match-result-period-top {
    font-size: 14px;
    padding: 9px 9px;
    text-align: center;
}

.match-result {
    width: 78px;
    /* color: var(--primary-one-1); */
}

.match-result-period-top {
    width: 105px;
    color: var(--primary-one-1);
}

/*+++ |=== DISPLAY ODDS SECTION ===| +++*/

.display-odds-div {
    display: flex;
    justify-content: center;
    gap: 99px;
}

.display-odds {
    padding: 9px 3px 0px;
    width: 91px;
    background-color: var(--grey-2);
    text-align: center;
    /* color: var(--primary-one-1); */
    border-radius: 6px;
    font-size: 14px;
}

/*+++ |=== TEAM SELECTION SECTION ===| +++*/
.team-select-section {
}

.game-info-board-container-div {
}

.team-flex-div {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 49px;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
}

.team-name-div {
    background-color: var(--grey-2);
    text-align: center;
    padding: 12px 0 3px;
    width: 14%;
    font-size: 23px;
    border-bottom: 2px var(--primary-two-1) solid;
}

.team-name-div a {
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
}

.team-select-guide {
    /* margin-left: auto;
    margin-right: auto; */
    text-align: center;
    width: 203px;
    font-size: 14px;
    /* padding: 3px 12px; */
    border-radius: 6px;
    padding: 8px;
    background-color: var(--primary-one-2);
}

.team-select-guide div {
    /* background-color: var(--primary-one-2); */
    /* height: 100%; */
    /* border: 2px solid red; */
    font-size: 14px;
}

.team-select-guide :nth-child(1) {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

}

.team-select-guide :nth-child(2) {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;

}

.team-select-box, .period-select-div {
    /* width: 223px; */
    /* padding: 12px; */
    text-align: center;
}

.select-team-label {
    font-size: 14px;
    background-color: var(--primary-one-2);
    padding: 3px;
    width: 169px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
}

.select-team-label:hover {
    background-color: var(--primary-two-2);
    transition: .36s background-color
}

.team-select-box select {
    width: 175px;
    /* color: red; */
    color: var(--grey-1);
    text-align: center;
    font-size: 14px;
    background-color: var(--white-2);
    padding: 3px;
    cursor: pointer;
}

.team-select-box option, .period-select-div option {
    color: var(--black-2);
    font-size: 14px;
    padding: 4px;
    cursor: pointer;    
}

.period-select-div {
    width: 218px;
    text-align: center;
}

.period-select-div a {
    text-decoration: none;
}

.select-period-label {
    padding: 4px;
    font-size: 14px;
    background-color: var(--primary-one-1);
    border-radius: 6px;
    width: 182px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    font-weight: 600;
}

.select-period-label:hover {
    background-color: var(--primary-two-2);
}

.period-select {
    text-align: center;
    color: var(--grey-1);
    font-size: 14px;
    background-color: var(--white-2);
    padding: 2px;
    width: 85px;
    cursor: pointer;
}

.team-result-score {
    text-align: center;
    padding: 12px 0 3px;
    width: 69px;
    font-size: 26px;
    font-weight: 900;
    background-color: var(--grey-4);
    border-bottom: 2px var(--primary-two-1) solid;
    color: var(--primary-two-1);
}

/*+++ |=== MATCHUP CONTAINER DIV ===| +++*/

.matchup-container-div {
    margin-top: 12px;
    margin-bottom: 23px;
    position: relative;
}

.matchup-btn-container {
    text-align: center;
    position: relative; /* Change to relative */
    /* ... other styles ... */
    /* margin-top: -23px; */
    top: 23px;
    width: min-content;
    margin-left: auto;
    margin-right: auto;
}

.matchup-btn-container.fixed {
    text-align: center;
    position: fixed;
    top: 69px;
    left: 50%; /* Center the fixed container */
    transform: translateX(-50%); /* Adjust to center it horizontally */
    z-index: 1000;
}

.matchup-btn-div {
}

.matchup-btn-div .button-style-1, .matchup-btn-div .button-style-1 a {
    width: 181px;
    padding: 6px;
    background-color: var(--primary-one-1);
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}


.matchup-btn-div .button-style-1:hover, .matchup-btn-div .button-style-1 a:hover {
    background-color: var(--primary-two-1);
    transition: .36s background-color;
}

#loading-message {
    position: absolute;
    top: 100%; /* Position it below the button */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 9px;
    width: min-content;
    /* display: none; */
}

.htmx-request #loading-message {
    display: block;
}

.loading-algorithm-div {
    background-color: var(--grey-4);
    text-wrap: nowrap;
    padding: .58rem .81rem;
    border-radius: .87rem;
}

.loading-algorithm-div div {
    font-size: .87rem;
}

/*+++ |===  TEAM INFO CONTAINER SECTION ===| +++*/

.team-info-container {
    margin-top: 33px;
    display: flex;
    justify-content: center;
    gap: 33px;
    /* border: 2px solid blue; */
}

/*+++ |=== MATCH RESULT TBL SECTION ===| +++*/

.match-result-tbl-container {
}

.tip-time-div {
    display: flex;
    justify-content: center;
    margin-bottom: 3px;
    position: absolute;
    margin-top: -15px;
    left: 50%;
    right: 50%;
}

.tip-time {
    white-space: nowrap;
    width: 99px;
    text-align: center;
    padding: 5px 9px;
    background-color: var(--grey-1);
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}


.match-result-tbl-div {
    margin-top: 33px;
    background-color: var(--grey-4);
    padding: 0px 6px;
    border-radius: 12px;
    box-shadow: 1px 1px 3px 6px var(--grey-1);
}
.match-result-tbl-container a {
    text-decoration: none;
}
.match-result-head {
    padding: 9px 6px;
    text-align: center;
    font-weight: 700;
    width: 23px;
    /* color: var(--primary-two-1); */
    font-size: 14px;
    border-bottom: 1px solid var(--grey-1);
}

.match-result-period {
    font-size: 14px;
    padding: 9px 6px;
    text-align: center;
    width: 23px;
}

.match-result-head-row td:nth-child(1), .match-result-row td:nth-child(1) {
    width: 36px;
}

.match-result-row td:nth-child(3n + 1), .match-result-head-row th:nth-child(3n + 1) {
    color: var(--primary-two-1);
    font-weight: 1000;
}

/*+++ |=== TEAM NEXT GAMES ===| +++*/

.team-next-games-tbl-div {
    background-color: var(--grey-2);
    border-radius: 6px;
    display: flex;
    justify-content: center;
}

.team-next-games-tbl tbody {
}
.team-next-games-tbl tr {
}

.team-next-games-tbl td, .next-games-info a {
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
}

.next-games-info {
    padding: 9px 0px;
    width: 187px;
    cursor: pointer;
}

.next-games-info a {
    text-decoration: none;
    text-align: center;
}

.next-games-title {
    font-size: 18px;
    color: var(--primary-two-1);
    font-weight: 900;
}

.next-games-title-away {
    padding-left: 12px;
}

.next-games-title-home {
    padding-right: 12px;
}

.next-game-at {
    color: var(--primary-two-1);
}

/*+++ |=== TEAM PLAYER VITALS CONTAINER ===| +++*/
.team-vitals-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}


.team-vitals-div {
    /* border: solid blue; */
    background-color: var(--grey-1);
    /* width: 223px; */
    border-radius: 12px;
}

.vitals-title-div {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    background-color: var(--primary-one-3);
    padding: 6px 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.vitals-div {
    background-color: var(--grey-1);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}    

.vitals-head {
    padding: 6px;
}

.vitals-head div {
    padding: 3px;
    border-bottom: 1px solid var(--primary-two-1);
}

.vitals-head, .vitals-row {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.team-ht-wt .vitals-head div, .team-ht-wt .vitals-row div {
    font-size: 14px;
    text-align: center;
    width: 54px;
    padding: 5px 6px 6px;
}

.team-age .vitals-head div {
    text-align: center;
    font-size: 14px;
    width: 82px;
    padding: 5px 3px;
}

.team-age .vitals-row div {
    text-align: center;
    width: 82px;
    padding: 3px 6px 9px;
    font-size: 14px;
}

/*+++ |=== LADDER RANK COLLECTION SECTION ===| +++*/

.rank-collection-container {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    margin-bottom: 23px;
}

.rank-button-container {
    display: flex;
    justify-content: center;
    position: absolute;
}

.rank-button-div div {
    background-color: var(--primary-one-1);
    border: none;
    padding: 6px 1rem;
    border-radius: 9px;
    cursor: pointer;
}

.rank-button-div div:hover {
    background-color: var(--primary-two-2);
}

.rank-collection-div {
    width: 100%;
    display: none;
    margin-top: 12px;
}

.rank-collection-flex-div {
    display: flex;
    justify-content: center;
    gap: 69px;
}

.rank-collection-tbl-div {
    padding: 3px;
    /* border: 1px solid var(--grey-2); */
}

.rank-collection-tbl {
    border-radius: 0.45rem;
    background-color: var(--grey-2);
}

.rank-collection-tbl-div.tbl-seperator {
    margin-top: 1rem;
}

.rank-collection-tbl caption {
    font-size: 0.87rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.rank-collection-tbl caption div {
    padding: 6px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-two-4);
    color: var(--primary-two-2);
}

.rank-collection-tbl thead th, .rank-collection-tbl tbody td {
    text-align: center;
    /* background-color: var(--grey-2); */
    padding: 6px;
    font-size: 0.87rem;
}

.rank-collection-tbl thead th {
    font-weight: 300;
    margin-bottom: 3px;
    border-bottom: 1px solid var(--primary-two-4);
}

.rank-collection-away-home-head, .off-def-rank, .off-def-index, .off-def-pts, .win-rank-pts-dif {
    width: 69px;
}

.win-rank-win-loss {
    width: 33px;
}

.rank-collection-tbl tbody td {
}

/*+++ |=== AWAY AND HOME PLAYERS SECTION ===| +++*/
.away-home-players-container {
    /* margin-top: 33px; */
    display: flex;
    justify-content: center;
    /* width: 100%; */
}

.away-home-players-div {
    /* width: 989px; */
    width: 49%;
}    

/*+++ |=== PLAYER SELECTION SECTION ===| +++*/

/*++ |=== BUTTONS ===| ++*/
.select-control-container {
    display: flex;
    justify-content: center;
    /* width: 69%; */
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 12px; */
}    

.button-style-1 {
    width: 169px;
    font-size: 14px;
    font-weight: 900;
    background-color: var(--primary-two-1);
    border-radius: 9px;
    border: none;
    padding: 5px;
    cursor: pointer;
}    

.change-player-btn:hover, .confirm-player-btn:hover {
    background-color: var(--primary-one-1);
    /* transition: .36s background-color; */
}



/*+++ |=== TEAM PLAYERS CONTAINER ===| +++*/

.players-list-container {
    /* text-align: center; */
}    

.starters-list-container {
    margin-bottom: 12px;
    margin-top: 12px;
}

.bench-list-container {
    margin-top: 23px;
}

.bench-list-container {
    margin-top: 18px;
}

.players-list-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    border-radius: 12px;
}


.players-list-div.bench .player-box-container {
    /* margin-top: 12px; */
}

.team-tier-games-table caption {
    padding: 6px;
    /* background-color: var(--primary-one-3); */
}

.team-tier-caption {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


.player-title-starter-div {
    padding: 0px 33px;
}

.player-title-starter {
    text-align: center;
    margin: auto;
    font-size: large;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-two-1);
    padding: 0px 45px 6px;
    margin-top: -9px;
}

.player-title-bench {
    position: absolute;
    /* border-radius: 6px; */
    /* border-top: 2px var(--primary-one-2) solid; */
    border-bottom: 2px var(--primary-two-2) solid;
    /* background-color: var(--primary-one-3); */
    text-align: center;
    padding: 6px;
    font-size: 20px;
    font-weight: 600;
    width: 269px;
    left: 0;
    right: 0;
    /* border: 2px solid blue; */
    margin-left: auto;
    margin-right: auto;
    margin-top: 237px;
    z-index: -1;
}

.player-box-container {
    text-align: center;
    width: 137px;
    padding: 6px;
    /* height: 199px; */
}


/*+++ |=== PLAYER BOX SECTION ===| +++*/

.player-props-section {
    /* margin-bottom: 23px; */
}

.player-pos-select {
    /* background-color: var(--grey-2); */
}

.player-pos-select label {
    font-size: .81rem;
}

.player-pos-select, .player-height, .player-weight {
    padding: 3px;
}

.player-height, .player-weight {
    font-size: 14px;
}

.player-dob, .player-age {
    font-size: 11px;
}

.player-link-div {
    background-color: var(--grey-2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.player-link-div a {
    text-decoration: none;
}

.player-link-div:hover {
    background-color: var(--primary-one-2);
    /* transition: .36s background-color; */
}

.player-dob {
    padding: 3px;
}

.player-age {
    padding-top: 3px;
    padding-bottom: 9px;
    font-weight: 900;
}

.player-pos-select input {
    color: var(--white-2);
    background-color: var(--grey-3);
    text-align: center;
    border: 1px solid var(--grey-1);
    width: 36px;
    height: 21px;
    font-size: 0.92rem;
    font-weight: 900;
}

.player-pos-select label input {margin-right: 100px;}

.player-check {
    /* margin: 4px; */
    background-color: var(--primary-one-4);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    /* border: 1px solid var(--white-2); */
    /* float: left; */
    overflow: hidden;
    font-weight: 900;
    text-overflow: ellipsis;
}

.player-check label {
    /* float: left; */
    line-height: 2.8em;
    /* width: 8.0em;  */
    width: 100%; 
    height: 2.8em;
    /* overflow-y:hidden; */
    /* text-overflow: ellipsis; */
    cursor: pointer;
}

.player-check label span {
    text-align: center;
    display: block;
    /* overflow-y:hidden; */
    line-height: 2.8em;
    height: 2.8em;
    /* margin: auto; */
    font-size: .81rem;
}

.player-check label input {
    padding: 3px;
    position: absolute;
    display: none;
    color: var(--white-2) !important;
}
/* :: selects all of the text within the input element and changes the color of the text */
.player-check label input + span{
    color: var(--white-2);
}

.player-check label input + span:hover {
    background-color: var(--primary-one-1);
    /* transition: .36s background-color; */
}

/* :: This will declare how a selected input will look giving generic properties */
.player-check input:checked + span {
    color: var(--white-1);
}

/* ::
This following statements selects each category individually that contains an input element that is a checkbox and is checked (or selected) and chabges the background color of the span element.
*/

.action input:checked + span{background-color: var(--primary-two-2);}

/*+++ |=== PLAYER COMB AWAY HOME SELECTION BOX ===| +++*/
.player-aw-hm-btn-container, .rank-props-aw-hm-div, .select-team-aw-hm-btn-div, .h2h-aw-hm-btn-container {
    margin-right: auto;
    margin-left: auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 23px;
    padding: 6px;
    border-radius: 12px;
    background-color: var(--grey-1);
}
 
.player-aw-hm-btn-house, .rank-props-aw-hm-optn-house, .tier-aw-hm-optn-house, .h2h-aw-hm-optn-house {
    background-color: var(--primary-one-3);
    width: 99px;
    border-radius: 6px;
}

.player-aw-hm-btn-house span, .rank-props-aw-hm-optn-house span, .tier-aw-hm-optn-house span, .h2h-aw-hm-optn-house span {
    cursor: pointer;
    font-size: 14px;
    display: block;
    padding: 4px;
    text-align: center;
    font-weight: 900;   
}


.player-aw-hm-btn-house input + span:hover, .rank-props-aw-hm-optn-house input + span:hover, .tier-aw-hm-optn-house input + span:hover, .h2h-aw-hm-optn-house input + span:hover {
    background-color: var(--primary-two-3);
    border-radius: 6px;
}


.player-aw-hm-btn-house input, .rank-props-aw-hm-optn-house input, .tier-aw-hm-optn-house input, .h2h-aw-hm-optn-house input {
    position: absolute;
    display: none;
}

.player-aw-hm-btn-house input:checked + span, .rank-props-aw-hm-optn-house input:checked + span, .tier-aw-hm-optn-house input:checked + span, .h2h-aw-hm-optn-house input:checked + span {
    border-radius: 6px;
    background-color: var(--primary-two-1);
    /* border: 2px solid red;    */
}

.player-aw-hm-btn-house input:checked + span:hover, .rank-props-aw-hm-optn-house input:checked + span:hover, .tier-aw-hm-optn-house input:checked + span:hover, .h2h-aw-hm-optn-house input:checked + span:hover {
    border-radius: 6px;
    background-color: var(--primary-two-3);
}


/*+++ |=== PLAYER TEAM INJURY SECTION ===| +++*/

.player-injury-section {
    display: flex;
    justify-content: center;
}

.player-injury-flex-div {
    display: flex;
    justify-content: center;
    margin-top: 23px;
    width: 92%;
    gap: 23px;
}

.injury-show-hide-container {
    
}

.injury-show-hide-div {
}

.injury-show-hide {
    text-wrap: nowrap;
    padding: 6px;
    border-radius: 6px;
    background-color: var(--primary-two-2);
    cursor: pointer;
    width: 169px;
    text-align: center;
}

.injury-show-hide:hover {
    background-color: var(--primary-one-2);
}

.player-injury-container {
    display: flex;
    justify-content: center;
}

.player-injury-div {
}

.player-injury-tbl {
    /* margin-left: 47px; */
}

.away-player-injury-tbl {
}

.home-player-injury-tbl {
}

.player-injury-row {
    display: none;
}

.player-injury-tbl th, .player-injury-tbl td {
    text-align: center;
}

.player-injury-tbl th {
    padding: 6px 12px;
    font-size: 0.84rem;
}

.player-injury-tbl td {
    font-size: 0.84rem;
    padding: 6px 12px;
}

.injury-head-row {
    background-color: var(--primary-one-3);
}

.player-injury-row {
    background-color: var(--grey-2);
}

.injured-player {
    width: 223px;
}

.injured-player-position {
    width: 33px;
}

.injured-player-status {
    width: 145px;
}

.injured-player-date {
    width: 69px;
}

.injured-player-details {
    width: 769px;
}

tbody .injured-player-details {
    text-align: justify;
    
}

.no-player-injury-div {
    margin-top: 23px;
}

.no-player-injury {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-size: 1rem;
    font-weight: 900;
    padding: 6px 12px;
    background-color: var(--primary-two-2);
    border-radius: 6px;
    display: none;
}

/*+++ |=== TEAM RANKINGS SECTION ===| +++*/

.team-rank-section {
    margin-top: 33px;
}

.away-home-rank-props-container-div {
    display: flex;
    justify-content: space-evenly;
}


.rank-props-title {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* border-radius: 6px; */
    /* border-top: 2px var(--primary-one-2) solid; */
    border-bottom: 2px var(--primary-two-2) solid;
    /* background-color: var(--primary-one-3); */
    padding: .69rem;
    font-size: 1.1rem;
    width: 289px;
    margin-top: -6px;
}

.rank-props-tbl-div {
    margin-top: 23px;
}

/*+ |=== TEAM RANK PROPS TABLES ===| +*/

.team-rank-props-tbl caption {
    padding-top: 6px;
    padding-bottom: 6px;
    /* margin-top: 12px; */
}

.team-rank-props-tbl caption a {
    font-size: .87rem;
    text-decoration: none;
    font-weight: 600;
}

.table-style-1.team-rank-props-tbl th {
    padding: .43rem .33rem;
    text-align: center;
}

.table-style-1.team-rank-props-tbl td {
    padding: .69rem .43rem;
    text-align: center;
    font-size: .81rem;
}


/*+++ |=== SELECT TEAM TIER CONTAINER ===| +++*/

.select-team-games-container {
    /* margin-top: 12px; */
    /* margin-bottom: 12px; */
}

.team-tier-games-div {
    margin-top: 23px;
}

.tier-games-title {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* border-radius: 6px; */
    /* border-top: 2px var(--primary-one-2) solid; */
    border-bottom: 2px var(--primary-two-1) solid;
    /* background-color: var(--primary-one-3); */
    padding: 9px;
    font-size: 18px;
    width: 269px;
    margin-top: 55px;
}

.select-team-aw-hm-btn-div {
    margin-top: 23px;
}

.select-team-games-button-div {
    display: flex;
    justify-content: center;
    gap: 23px;
    width: fit-content;
    background-color: var(--grey-1);
    padding: 6px;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
}

/*+++ |=== SELECT BUTTONS ===| +++*/

.tier-btn-div .button-style-1 {
    background-color: var(--primary-one-1);
    width: 154px;
}

.tier-btn-div .button-style-1:hover {
    background-color: var(--primary-two-1);
    transition: .36 background-color;
}


/*+++ |=== TABLE SYTLES ===| +++*/

.team-tier-games-table, .h2h-team-table {
    font-size: .87rem;
}

.team-tier-games-table th {
    /* border: 2px solid blue; */
    padding: 6px 4px;
    /* text-align: center; */
}

.team-tier-games-table tr th:last-child, .h2h-team-table tr th:last-child {
    padding-right: 10px;
}

.team-tier-games-table td, .h2h-team-table td {
    padding: 6px 3px;
    text-align: center;
}

/*+++ |===  TEAM TIER GAMES SECTION ===| +++*/

.team-tier-games-section {
}

.team-tier-games-container {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 33px;
    margin-top: 33px;
}

.game-id-form {
    display: none;
}

.date-head, .tier-th {
    text-align: center;
}

.date-head, .game-date-td {
    width: 65px;
}

.tier-head-opnt {
    text-align: left;
    /* padding-left: 6px; */
    /* border: 2px solid red; */
}

.team-tier-games-table tr td:nth-child(4) {
    text-align: left;
    /* padding-left: 6px; */
    width: 99px;
}

/*+++ |=== HEAD TO HEAD ===| +++*/



.select-h2h-section {

}

.select-h2h-container {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    gap: 33px;
    margin-top: 23px;
}

.h2h-head-title {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* border-radius: 6px; */
    /* border-top: 2px var(--primary-one-2) solid; */
    border-bottom: 2px var(--primary-two-1) solid;
    /* background-color: var(--primary-one-3); */
    padding: 3px;
    font-size: 18px;
    width: 279px;
    margin-top: 18px;
}

.h2h-btn-container {
    margin-top: 33px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 69px;
    background-color: var(--grey-2);
    padding: 6px;
    border-radius: 12px;
}

.h2h-btn-container .button-style-1 {
    background-color: var(--primary-one-1);
}

.h2h-btn-container .button-style-1:hover {
    background-color: var(--primary-two-1);
    /* transition: .36s background-color; */
}

.h2h-tbl-dresser {
    margin-top: 23px;
}

.h2h-team-table {
    /* margin-top: 18px; */
}

.h2h-team-table caption {
    padding-top: 6px;
    padding-bottom: 6px;
    /* margin-top: 12px; */
}

.h2h-caption {
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.h2h-team-table th {
    /* border: 2px solid blue; */
    padding: 6px 4px;
    text-align: center;
}

/*+++ |=== ALGORITHM TABLES ===| +++*/

.table-style-1 thead th {
    padding: 9px 3px;
    font-size: 13px;
    font-weight: 400;
}

.table-style-1 tbody td {
    font-size: 12px;
    padding: 7px 4px;
    white-space: nowrap;
}

.table-style-1 tbody tr:hover {
    background-color: var(--primary-one-4);
}

.table-border-dressing {
    /* padding: 12px; */
    /* border-radius: 12px; */
    /* background-color: var(--grey-1); */
    /* width: fit-content; */
    box-shadow: 1px 1px 3px 6px var(--grey-1);
}

.players-list-div {
    padding: 6px;
}

