/* Create three unequal columns that floats next to each other */
#mobile_playerdetails_records{
    display: none;
    }


#pagecontent{
    width:100%
}
#td_header{
    padding-top: 10px;
    width: 90%;
    margin: auto;
    height: 120px;
    position: relative;
    
}
/* Create three unequal columns that floats next to each other */
.column {
    float: left;
  }
  
.left {
    height: 120px;
    border-right:  solid 5px;
    border-bottom: solid 5px;
    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);
    position: relative;
    }

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

.middle {
    width: 60%;
    height: 110px;
    text-align: left;
    border-bottom:  solid 4px;
    border-color: var(--table-border);;
    padding-left: 20px;
    padding-top: 35px;
    }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
    }

#playername {
    font-size: 48px;
    margin : 0; 
    line-height : 0.5;
    font-weight: bold;
}

#clubname {
    margin-bottom : 0; 
    font-weight: bold;
    font-style: oblique;
    padding-top:20px
}



#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;
    }
       

#content {
    width: 100%;
    }

.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;
    }

    .right {
        display: none;
    }

    .middle{
        width: 70%;
        height: 110px;
        text-align: left;
        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);
        
    }

    .middle p{
        vertical-align: text-bottom;  
    }
    
    .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);;
    }


    #playername {
        font-size: 26px;
        margin : 0; 
    }
    
    #clubname {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 16px;
        padding-top:10px
    }
    


    #label2{
        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;
    }

        
    #container {
        width: 100%;
        overflow-x: scroll;
        }
        
        #content {
        width: 100%;
        }

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