html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/*These 3 styles are used on the game log*/
.cat {
    /*use this for a class*/
    color: black;
}
.pcat {
    /*use this for a class*/
    color: green;
    font-weight:700;
}

.bcat {
    /*use this for a class*/
    color: purple;
    font-weight: 700;
}

.data {
    /*use this for a class*/
    color: black;
}

/*used on Fantasy | Roster Management */
.BTCellTextSizeSmall {
    background-color: red;
    /*text-align: right;*/
    margin: 0px;
    font-size: 13px;
    font-weight: 500;
}

/*thead th {
    background-color: red;
}*/

/*tr.even td {
    background-color: blue;
}

tr.odd td {
    background-color: yellow;
}

tbody tr.odd th, tbody tr.even th {
    background-color: green;
}*/

.html-table-td {
    border: solid 1px gainsboro;
    margin: 0px;
    padding: 0px;
    
}

/*
    -------------------------------------------------------------------
        STATISTICS PAGE HEADER DEFINITIONS FOR CSS GRID
    -------------------------------------------------------------------
*/


body {
    margin: 0px;
}

.stats-wrapper {
    display: grid;
    grid-gap: 1px;
    grid-template-columns: [col1-start] 82px [col2-start] 400px [col3-start] 650px [col3-end];
    grid-template-rows: [row1-start] auto [row2-start] 20px [row2-end];
    /*background-color: #000;*/
    /*color: #444;*/
}

.stats-box {
    /*background-color: #444;*/
    /*color: #fff;*/
    border-radius: 1px;
    padding: 1px;
    /*font-size: 150%;*/
}

.stats-logo {
    grid-column: col1-start;
    grid-row: row1-start / row2-end;
    padding: 0;
}

.stats-tabs {
    grid-column: col3-start;
    grid-row: row1-start / row2-end;
    margin: auto 0;
}

.stats-textDescription1 {
    grid-column: col2-start / col3-start;
    grid-row: row1-start;
    font-size: 16pt;
    font-weight: 500;
    padding: 0;
    margin: auto 0;
}

.stats-textDescription2 {
    grid-column: col2-start;
    grid-row: row2-start;
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin: auto 0;
}

.stats-debug {
    border: 1px solid black;
}

/* 
    -----------------------------------------------------------------------------
        Makes a submit button look like a link to save space in a table's row
    -----------------------------------------------------------------------------
*/
input[type="submit"].buttonLooksLikeALink {
    border: none;
    background: none;
    display: inline;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}


/* 
    -----------------------------------------------------------------------------
        For the AI component
    -----------------------------------------------------------------------------
*/

/*.sentold {
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
    background: #075698;
    color: #FFF;
    position: relative;
    border-radius: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    box-shadow: 0 8px 6px -6px black;
    float: right;
    width: auto;
}

.receivedold {
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
    background: #075698;
    color: #FFF;
    position: relative;
    border-radius: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    box-shadow: 0 8px 6px -6px black;
    float: left;
    width: auto;
}*/


textarea {
    border: 1px dashed #888;
    border-radius: 5px;
    width: 80%;
    overflow: auto;
    background: #f7f7f7
}

#scrollbox {
    overflow: scroll;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
    height: 400px;
}

.sent, .recieved {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

    .sent p {
        background: #42a5f5;
        color: #fff !important;
        border-radius: 10px 10px 3px 10px;
        display: block;
        max-width: 75%;
        padding: 7px 13px 7px 13px;
    }

.received {
    background: #f1f1f1;
    color: #000 !important;
    border-radius: 10px 10px 10px 3px;
    display: block;
    max-width: 75%;
    padding: 7px 13px 7px 13px;
    /*display: block !important;
    width: auto;
    align-items: flex-start;*/ /* for flex containers */
}

/*This pins objects to the bottom of the viewing area */
.fixed-bottom-placement {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensure it appears above other content */
}