body {
    min-height: 100vh;
    background: white;
    font-family: 'Didact Gothic', sans-serif;
    color: black;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.splash {
    background: url("/static/images/cells_backdrop.jpg") repeat 0 0;
    padding-top: 100px;
}

#main-body {
    padding-top: 100px;
    padding-bottom: 140px;
    background: #fff;
}

.splash div #main-body {
    padding: 50px;
    border-radius: 5px;
    font-size: 1.5rem;
}

nav {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fdb44b;
}

.navbar-brand,
.navbar-brand:hover {
    color: #482b0e;
    font-size: 1.4rem;
}

.nav-link {
    font-size: 18px;
    color: #482b0e !important;
}

.nav-link:hover {
    background: #7d2604;
    color: #fff !important;
    border-radius: 3px;
}

.navbar {
    width: 100vw;
}

.navbar-nav {
    margin: 7.5px;
    max-height: 40vh;
    overflow-y: auto;
}

a {
    color: #714316;
    text-decoration: underline;
}

footer {
    width: 100%;
    height: auto;
    line-height: 20px;
    padding-top: 20px;
    text-align: center;
    color: #482b0e;
    background-color: #fdb44b;
    z-index: 1000;
}

footer a {
    color: #4a3212;
}

a:hover {
    color: #7d2604;
}

h1 {
    font-size: 2.75em;
    font-weight: 400;
}

h1,
h2 {
    color: #995c38;
}

.highlight {
    color: black;
}

form {
    max-width: 20em;
    padding-bottom: 50px;
}

form#login-form {
    max-width: 15em;
}

table tr {
    color: black;
}

.page-link.active {
    background: #fd670d;
    border-color: #fd670d;
}

table.result-filter {
    table-layout: fixed;
    width: 100%;
}

table.result-filter caption {
    caption-side: top;
    font-weight: bold;
    color: black;
}

table.result-filter td {
    width: 20%;
}

#upload-btn {
    margin-top: 18px;
}

.div-filter {
    width: 200px;
    float: left;
    text-align: left;
    font-weight: bold;
}

textarea {
    width: 100%;
    height: 300px;
    padding: 12px 20px;
}

.clear-all-btn {
    margin-top: .5rem;
}

.image-container {
    display: flex;
    gap: 10%; /* Adjust space between the image sections as needed */
    justify-content: flex-start; /* Align all image-wrapper columns to the left */
}

.image-wrapper {
    display: flex;
    flex-direction: column; /* Stack text above the image */
    align-items: flex-start; /* Align items to the top */
    text-align: center; /* Center-align text within the div */
    width: 33%; /* Each image-wrapper takes up one-third of the container width */
}

.image-wrapper img {
    width: 100%; /* Scale image to fit within the wrapper */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px; /* Adds a little space between text and image */
}

.image-wrapper-half {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    width: 50%; /* Each image-wrapper takes up half of the container width */
}

.image-wrapper-half img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.image-wrapper-userguide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    width: 75%; /* Each image-wrapper takes up half of the container width */
}

.image-wrapper-userguide img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.lambda-bar {
    position: relative;
    display: inline-block;
}

.lambda-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-top: 1px solid black;
    transform: translateY(0.2em);
}

.help-section {
    background-color: #f9f9f9;
    border-left: 5px solid #fdb44b;
    padding: 15px;
    margin: 20px 0;
    color: #482b0e;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.help-section h3 {
    color: #995c38;
    margin-top: 0;
    font-size: 1.25rem;
}

.help-section p {
    margin: 0;
}

.uniprot-subcellular-info p {
    margin: 0;
    padding-left: 1em;
}
