html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 20px;
}

.hidden {
    display: none;
}

.error {
    color: Red;
}

.warning {
    color: orange;
}

.gray {
    background: lightgray;
}

.accordion-button {
    padding: 5px 20px 2px 20px;
}

table {
    text-align: left;
    position: relative;
    border-collapse: collapse; 
}

.tableHeader thead > tr {
    background: lightgray;
}

/*These 2 freeze table headers and make them light gray*/
.stickyTableWrapper table > thead > tr {
    background: lightgray;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
.stickyTableWrapper {
    height: 95vh;
    overflow: auto;
}

.scheduleBody {
    padding-left: 0px;
}

.boatgrid {
    margin: 1px 1px 1px 1px;
    padding: 2px 1px 7px 1px;
    width: 210px;
    float: left;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-row-gap: 1px;
    grid-column-gap: 1px;
}

.boatgrid2 {
    margin: 1px 1px 1px 1px;
    padding: 2px 1px 15px 1px;
    width: 170px;
    float: left;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-row-gap: 1px;
    grid-column-gap: 1px;
}

.location {
    max-width: 1270px;
}

.locationName {
    color: Black;
    font-size: 20px;
    text-align: center;
    padding: 0px 1px 0px 1px;
    line-height: 20px;
    margin-bottom: 12px;
}

.locationMax {
    width: 1270px;
}

.boatitem {
    color: Black;
    text-align: right;
    padding: 0px 1px 0px 1px;
}

.boatDescription {
    font-size: 14px;
}

.schedgrid {
    border: 2px solid #393D3F;
    margin: 2px auto;
    float: left;
    overflow: scroll;
    overflow-y: hidden;
    display: grid;
    grid-template-columns: repeat(7, 150px);
    grid-template-rows: auto;
    grid-row-gap: 3px;
    grid-column-gap: 3px;
}

.scheddate {
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 30px;
}

.schedgriditem {
    border: 2px solid #62929E;
    background-color: #393D3F;
    color: #E6E6E8;
    display: flex;
    cursor: pointer; /* this prevents the cursor changing to a vertical line on div's with text (i.e., reservations) */
}

.schedgrid1Line {
    font-size: 16px;
    height: 30px;
    margin-bottom: 0px;
}

.schedgrid2Line {
    font-size: 16px;
    height: 45px;
    margin-bottom: 0px;
}

.res {
    color: black;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    padding: 0px 0px 0px 2px;
    border: 2px solid black;
    line-height: 20px;
}

.noRes {
    background-color: #27AE60;
}

.otherRes {
    background-color: #ffff66;
}

.myRes {
    background-color: #0d6efd; /*This is bootstrap "primary"*/
    color: white;
}

.myStandby {
    background-color: #dc3545; /* bootstrap danger */
}

.standbyAvail {
    background-color: blueviolet;
}

.standbyOffer {
    background-color: cyan;
}

.oos {
    background-color: #ffff66;
}


.mismatch {
    background-color: Red;
}


@media only screen and (max-width: 400px) {
    body {
        
    }

 /*   .wrapper {
        width: 365px
    }

    .schedgrid {
        width: 185px;
    }*/
}

@media only screen and (min-width: 900px) {
    body {
        
    }

   /* .wrapper {
        width: 1005px
    }

    .schedgrid {
        width: 820px;
    }*/
}