/* General styling */
.collapsing[aria-expanded="false"] {
    display: none;
}

.study-card {
    background: #eeeeee;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: solid 2px #20558a;
}

h2.study-group {
    margin-bottom: 15px;
}

.accordion-content {
    padding: 5px 5px 5px 35px;
    font-size: 17px;
}

/* Overriding from site.css to move the caret to before the study names instead of after */
a.accordions:after {
    display: none;
}

a.accordions.collapsed:after {
    display: none;
}

a.accordions:before {
    font-family: FontAwesome, sans-serif;
    content: "\f0d7";
    color: #212529;
    font-size: 0.9em;
    display: inline-block;
    border-width: 5.5px;
    margin-right: 10px;
    margin-left: 5px;
}
a.accordions.collapsed:before {
    content: "\f0da";
    margin-right: 13px;
}

/* Search input and buttons */
#search-box {
    display: block;
    margin-bottom: 5px;
    margin-top: 20px; /* Match the padding on the initial h2 element */
}

.no-results {
    padding-top: 3px;
    font-weight: bold;
    color: red;
}

.collapse-toggle {
    margin-left: 5px;
}

.studyFilters {
    margin: 0;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
}

.studyFilters .search-interface {
    display: flex;
    flex-grow: 2;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
}

.studyFilters .search-interface #search-box {
    margin: 0;
    border-radius: 0;
    border: none;
    height: auto;
    width: auto;
    flex-grow: 2;
}

.studyFilters .search-interface .search-button {
    border-radius: 0;
    background: #c70039;
    border: none;
}

.studyFilters .expand-collapse-buttons {
    margin: 0;
    display: flex;
    margin-bottom: 0.5em;
}
