.oneshotsBody {
    background-image: linear-gradient(rgba(1, 13, 65, 0.5), rgba(0, 0, 0, 0.5)),
    url(../imgs/assets/background-tile-blue.png);

    background-color: rgb(12, 38, 73);
}

@media (max-width: 700px) {
    .oneshotsBody #mobileNavOpen {
        background-color: rgb(12, 38, 73);
    }

    .oneshotsBody #mobileNavMenu {
        background-color: rgb(12, 38, 73);

        color: rgb(255, 255, 255);
    }

    .oneshotsBody #mobileNavMenu a {
        color: rgb(197, 197, 214);
    }
}

.menuBar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    background-color: aliceblue;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.oneshotsMain {
    width: 100%;
    min-width: none;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgb(104, 133, 170);
    border: none;
}

.oneshotsPageDiv {
    margin-left: 5%;
    margin-right: 5%;
}

#topLink {
    color: white;
}

/* .favoritesRow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.thumbnail {
    max-height: 200px;
    margin: 10px;
} */

.oneshotsTextBlurb {
    background-color: aliceblue;
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    text-align: justify;
}

#sortSpan {
    display: flex;
    justify-content: right;
    align-items: center;

    width: 90%;
    margin-bottom: 10px;
}
#sortSpan label {
    font-weight: bold;
}
#sortSpan select {
    width: fit-content;
    margin-left: 10px;
}

/****************************/
/* Table styles */
/****************************/

.oneshotTableContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oneshotTable {
    width: 90%;
    font-size: .8em;

}

.oneshotTableIcon {
    width: 16px;
}

.oneshotTable thead {
    background-color: rgb(46, 146, 192);
}

.oneshotTable tbody tr:nth-child(odd) {
    background-color: #f2f2f2
}

.oneshotTable tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.oneshotTable td, th {
    border: 1px solid black;
    padding-left: 5px;
    padding-right: 5px;
}

.oneshotTable .yearColCell, .oneshotTable .collectionColCell {
    border-right: none;
    padding-right: 0;
}
.oneshotTable .monthColCell, .oneshotTable .notesColCell {
    border-left: none;
}

/*******************/
/* Tooltip realted */
/*******************/
.tooltip {
    max-height: 300px;
    max-width: 300px;
    padding: 5px;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    background-color: rgb(255, 251, 250);
    
    color: rgb(0, 0, 0);
    border: solid 1px black;
    border-radius: 0px;
    align-items: baseline;

    max-width: 400px;
}


.tooltip-inner p {
    margin: 0;
}