.search-body {
    width: 100vw;
    display: grid;
    grid-template-columns: auto auto;
}

.search-info {
    display: grid;
    grid-template-columns: auto;
    background-color: rgb(238, 238, 238);
    width: 30vw;
    height: 100vh;
    color: black;
}

.search-info img {
    width: 28vw;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-bottom: 1em;
}

.search-info-h1 {
    font-size: 2em;
    padding-top: 3em;
    padding-bottom: .25em;
    
}

.search-heading {
    color: white;
    padding-left: 1em;
}

.search-heading h1 {
    padding-bottom: .25em;
    font-size: 2em;
    padding-top: 3em;
    width: fit-content;
}

.search-heading p {
    padding-left: 1.5em;
}

.search-bar {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-div {
    padding: .5em;
}


.search-bar h1 {
    padding-top: 1em;
}

.search-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    overflow: hidden;

}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border: solid black;
    padding: 1em;

    width: fit-content;
    height: 65vh;

    margin: 0 2em 2em 0;

    overflow: hidden;
}

#container {
  display: grid;
  grid-template-areas:
  's1 s2 s3 s4 sb';
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 2em 0em;
  
}

#add {
    grid-area: sb;
}

#box1 {
    grid-area: s1;
}

#box2 {
    grid-area: s2;
}

#box3 {
    grid-area: s3;
}

#box4 {
    grid-area: s4;
}

#addDatasetButton { 
    font-family: Helvetica;
    font-size: 2em;
    font-weight: bold;
    border: dashed;
    border-color: white;
    color: white;
    background-color: #171717;

    width: 15vw;
    height: 15vw;
    min-width: 9em;
    min-height: 9em;

    cursor: pointer;
    transition: ease-in .2s;
}


#addDatasetButton:hover {
    background-color: white;
    color: rgb(11, 11, 12);
    border-color: rgb(11, 11, 12);
}

.grid {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 1em;

    place-items: center;
    width: 100%;

}

.grid::-webkit-scrollbar {
    width: 5px;
}

.grid::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
}

.grid::-webkit-scrollbar-thumb {
    background: #202124;
    border-radius: 10px;
}

.grid p {
    height: 1.25em;
    color: black;
}

.grid button {
    background-color: rgb(238, 238, 238);
    color: black;
    border: solid black;
    height: auto;
    font-size: 1em;
    padding: .25em;
    width: 12vw;
    min-height: 3em;
    max-height: fit-content;
    transition: ease-in .2s;
    margin-right: 10px;
}

.grid button:hover {
    color: white;
    /*background-color: #ff6d8a; PINK!!!!! */
    background-color: #a60f2d;
    border: solid black;
}

.search {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search img{
    height: auto;
    width: auto;
    max-width: 18vw;
}

.title-container {
    display: block;
    align-items: center;
    min-height: 5em;
}

.title-container input {
    margin-left: 2.75em;
}


#myInput1 {
    height: 2em;
    margin-bottom: 1.2em;
    overflow-y: hidden;
}

.back {
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: rgb(11, 11, 12);
    color: white;
    border: solid white 2px;

    font-size: 1em;
    width: 10em;
    height: 2em;
    
    transition: ease-in .2s;

}

.result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back:hover {
    background-color: white;
    color: rgb(11, 11, 12);
    border: solid rgb(11, 11, 12) 2px;
}

.expanded {
    overflow: hidden;
 }
  
 .expanded .expandable-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-width: 75vw;
    z-index: 9999;
    cursor: pointer;
  }
  

#searchBtn {
    background-color: #fff;
    color: black;
    padding: 1px;
    cursor: pointer;
    transition: ease-in .2s;
}

#searchBtn:hover {
    background-color: #a60f2d;
    color: #fff;
}

#geneName {
    padding: 2px;
}

.top {
    min-height: 90vh;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-bottom: 1em;
}

.bottem {
    overflow: hidden;
    padding: 1em;
    background-color: rgb(238, 238, 238);
    width: 30vw;
    height: 4em;
    border-top: solid black 4px;
    transition: ease-in .2s;
}

.bottem:hover {
    background-color: #a60f2d;
    color: #fff;
}


@media all and (max-width: 800px) {
    .search-heading {
        color: white;
        padding-left: 1em;
    }
    
    .search-heading h1 {
        padding-bottom: .25em;
        font-size: 1.5em;
        padding-top:4em;
        width: fit-content;
    }
    
    .search-heading p {
        padding-left: .5em;
        font-size: .9em;
    }

    #container {
        display: grid;
        grid-template-areas:
        'sb'
        's1' 
        's2' 
        's3' 
        's4';
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 2em 0em;
      }

    .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        border: solid black;
        padding: 1em;

        width: 75vw;
        height: fit-content;

        margin: 2em 0 0 0;

        overflow: hidden;
    }

    .grid button {
        background-color: rgb(238, 238, 238);
        color: black;
        border: solid black;
    
        font-size: 1.25em;
        width: 100%;
        transition: ease-in .2s;
    }

    .result img{
        height: auto;
        width: 70vw;
        max-width: none;
    }
}

.returnButtonContainer {
    margin-top: auto;
    padding-left: 1em;

}
#returnButton{
    color: white;
    /* color:#202124; */
}