
/* 
    Created on : May 18, 2023, 10:56:47 PM
    Author     : scott
*/

body {
    background-color: #909090;
    margin: 0px;
}

#main {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    padding-bottom: 7px;
    border-bottom: 3px solid black;
    padding: 0 25px;
}

#footer {
    text-align: right;
    padding: 10px 15px 0px 10px;
    margin-bottom: 15px;
}

th {
    text-align: left;
}

.clearFloat {
    content: "";
    display: block;
    clear: both;
}

.tableRight {
    text-align: right;
}

.rounded {
    border-radius: 20px;
    border: 2px solid black;
}

.noulbuttons {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


/*
    Top banner settings.
*/
#topBanner {
    margin: 10px 0 0 0;
    padding: 10px 10px;
    border-bottom: 3px solid black;
}

#logoWrapper {
    width: 35%;
    height: 50px;
    background-image: url("../img/DGTrackerLandscapeBlack.webp");
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    cursor: pointer;
}


@media only screen and (max-width: 500px) {
  /*#logoWrapper {
        background-image: url("../img/DGTrackerStackedBlack.webp");
    } */
}

#user {
    float: right;
    margin-right: 10px;
}

.userImg {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    cursor:  pointer;
}

.userDetails {
    padding: 10px;
    position: absolute;
    right: 12px;
    border: solid 3px black;
}

/*
    Content Settings
*/
#content {
    margin-top: 10px;
    flex: 1;
}

/*
    Homepage Settings
*/

#leagueCards {
    display: flex;
    flex-basis: row;
}

.leagueCard {
    display: inline-block;
    padding: 7px;
    margin: 7px;
}

.cardHeader {
    padding: 5px;
}

/*
    League settings
*/

#leagueHeader {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 3px solid black;
    padding-bottom: 7px;
    margin-bottom: 15px;
}

#leagueLogoDiv {
    width: 14%;
}

#leagueInfo {
    margin-left: 15px;
}

#leagueCourses {
    margin-left: 15px;
}

@media only screen and (max-width: 500px) {
    #leagueLogoDiv {
        width: 20%;
    }
}

img.leagueLogo  {
    width: 100%;
    height: auto;
    border: black solid 2px;
}

#tabs {
    margin-top: 15px;
}

/*
    Testing
*/

.bordered {
    border: white solid 5px;
}
