/*******************/
/* Tooltip realted */
/*******************/
.comicThumbTooltip {
    max-height: 300px;
    max-width: 250px;
    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;
}

/****************************/
/* Comics table page styles */
/****************************/
.comicsPageNote {
    font-size: small;
}

.comicTable, .oddsEndsComicTable {
    background-color: rgb(172, 245, 176);
    border: 1px solid black;
    border-collapse: separate;

    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;

}

@media (max-width: 700px) {
    .comicTable {
        display: none;
    }
}

.comicTable td, .comicTable th, .oddsEndsComicTable td, .oddsEndsComicTable th {
    background-color: aliceblue;
    border: 1px solid black;
    padding-left: 5px;
    padding-right: 5px;
    font-size: small;
}


.imgSpan, .notesSpan, .countSpanHighlightable {
    cursor:pointer;
    text-decoration: underline dotted;
    -webkit-text-decoration: underline dotted;
}

.imgSpan:hover, .notesSpan:hover, .countSpanHighlightable:hover {
    color: #8cb4d6;
}

.whiteLink {
    cursor:pointer;
    color: #f0f8ff;
    text-decoration:underline;
}

.whiteLink:hover {
    color: #cad3db;
}

.blackLink {
    cursor:pointer;
    color: #000000;
    text-decoration:underline;
}

.blackLink:hover {
    color: #8cb4d6;
}

/***********************************/
/* Mobile comics table page styles */
/***********************************/
.comicTableCollapsible {
    display: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .comicTableCollapsible {
        display: block;
    }
}

.collapsibleSubheaderDivOuter {
    /* border: 2px solid  rgb(172, 245, 176); */
    border: 1px solid black;
    background-color: rgb(172, 245, 176);
    /* background-color: aliceblue; */
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;

}

.collapsibleSubheaderDivInner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 2px;

    border: 1px solid black;
    background-color: aliceblue;

}

.toggleRowButton {
    border-radius: 50%;
    width: 30px;
    height: 30px;

    float: right;

    transition: transform .35s ease;

}

.mobileTable {
    width: 100%;
}

.mobileTable td, .mobileTable th {
    background-color: rgb(223, 231, 240);
    background-color: rgb(195, 203, 212);
    border: 1px solid black;
    padding-left: 5px;
    padding-right: 5px;
    font-size: small;
}



/************************/
/* Cover gallery styles */
/************************/
/* Above shelf container */
#comicsIntro {
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
}

#comicShelfHeader {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-left: 20px;
    padding-right: 20px;

}

.form-select {
    display: inline-block;
    width: auto;
}

/* Comic shelf */
#comicShelf {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-around;
    
}

.comicThumb {
    max-height: 200px;
    padding: 5px;
}
