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

#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 4px;
    border-bottom: solid 4px;
    border-color: var(--table-border);;
    width: 10%;
    border-radius: 8px;
    background: var(--table-header);
    }

.right{
    height: 120px;
    border-left:  solid 4px;
    border-bottom: solid 4px;
    border-color: var(--table-border);;
    width: 10%;
    border-radius: 8px;
    background: var(--table-header);
    }

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

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

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

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

#middle_mobile{
    display: none;
    font-size:xx-large
  }


/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
    .column{
        margin: 0px;
        padding: 0px 0px;
    }

    .left {
        background: var(--table-border);
        width: 33%;
      }

    .right {
        background: var(--table-border);
        width: 33%;
      }

    .middle {
      width: 34%;
      height: 120px;
      border-bottom: solid 0px;
      background: var(--table-border);
      color: var(--hover-text);
    }

    .left {
        border-radius: 0px;
        border-bottom: solid 0px;
        border-left: 4px solid var(--table-border);
        }
    
    .right{
        border-radius: 0px;
        border-bottom: solid 0px;
        border-right: 4px solid var(--table-border);
        }

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

    #middle_mobile{
        display:table-column
        }

    #middle{
        display:none
        }

}