/* Create three unequal columns that floats next to each other */

#td_header{
    padding-top: 10px;
    width: 90%;
    margin: auto;
    height: 120px;
}
/* Create three unequal columns that floats next to each other */
.column {
    float: left;
  }
  
.left {
    height: 120px;
    border-right:  solid 4px;
    border-bottom: solid 4px;
    border-color: var(--table-border);;
    width: 10%;
    border-radius: 8px;
    background: var(--table-header);
    }

.right{
    width: auto;
    margin: auto;
    height: 110px;
    width: 30%;
    border-bottom: solid 4px;
    border-color: var(--table-border);
    }



#seasons_full_scroll{  
    width: 90%;
    overflow-x: scroll;
    }

#td a {
    color: var(--default-text);
    text-decoration: none;
    }

.middle {
    width: 60%;
    height: 110px;
    margin-bottom: 10px;
    border-bottom:  solid 4px;
    border-color: var(--table-border);
    padding-left: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-weight: bold;
    padding-top: 50px;
    }

.middle p{
    text-align: left;
    font-size: 48px;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;    
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: block;
    clear: both;
    }
#td_header::after {
    content: "";
    display: block;
    clear: both;
    position:absolute
    }

#container {
    width: 100%;
    }
    
    #content {
    width: 100%;
    }
    
    #team_widget {
        font-family: Arial, Helvetica, sans-serif;
        border-top: 4px solid var(--table-border);
        border-left: 4px solid var(--table-border);
        border-right: 4px solid var(--table-border);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-spacing:0;
        }
        
    #team_widget td {
        padding-top: 12px;
        padding-bottom: 12px;
        }
        
    
    #team_widget th {
        background: var(--table-header);
        color: var(--table-header-text);
        border-bottom: 4px solid var(--table-border);
        padding-top: 12px;
        padding-bottom: 12px;
        width: 5vh;
        }
        
    #team_widget td:nth-child(n) {
        border-right: 1px solid var(--table-border);
        }
    
    #team_widget th:nth-child(n) {
        width: 5vw;
        }
        
    #team_widget td {
        padding: 8px;
        }
        
    #mobile_clubdetails_records{
        display: none;
    }

    .tbl {
        border-collapse: collapse;
    }

    .test{
        background: var(--table-header);
        color: var(--table-header-text);
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 7px;
        padding-right: 7px;
    }

    #btn {
        cursor: pointer;
        width: 100%;
        font-weight: bold;

    }

@media screen and (max-width: 800px) {

    .column{
        margin: 0px;
        padding: 0px 0px;
        width:100%
    }

    .right {
        display: none;
    }

    #container {
        width: 100%;
        }

    .middle{
        width: 70%;
        height: 110px;
        align-content: start;
        border-bottom:  solid 0px;
        border-right: solid 4px;
        border-color: var(--table-border);;
        padding-left: 5px; 
        padding-top: 50px;
        border-radius: 0px;
        background: var(--table-border);
        color: var(--hover-text);
    }

    #seasons_full_scroll{  
        width: 100%;
        }

    .middle p{
        text-align: left;
        font-size: 22px;
        width: auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;   
    }
    
    .left{
        width: 30%;
        border-bottom: solid 0px;
        height: 110px;
        border-radius: 0px;
        border-left: solid 4px;
        background: var(--table-border);
        border-color: var(--table-border);;
    }

    #label{
        width: 90%;
        float: left;
        margin-left: 5%;
        border-bottom: 4px solid var(--table-border);
        margin-bottom: 5px; 
        font-size: 32px;
        font-weight: bold;
        padding-top: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


    #mobile_clubdetails_records{
        display: block;
    }

    #td_header{
        padding-top: 0px;
        width: 100%;
        margin: 0px;
        height: 110px;
    }

}