.dataset-main {
    display: grid;
    grid-template-columns: auto auto;
}

.dataset-description {
    height: 80.5vh;
    padding: 1em;
    width: 20vw;
    background-color: rgb(65, 65, 65);
    color: white;
    display: flex;
    flex-direction: column;
}

.dataset-description p {
    padding: .5em;
    padding-bottom: 1em;
    overflow: hidden;
}

.dataset-description h1 {
    overflow: hidden;
}

.search {
    padding: 1em;
    background-color: rgb(65, 65, 65);
    color: white;
    padding-top: 6.55vh;
}

.search h1 {
    width: fit-content;
    border-bottom: solid white 1px;
    margin: .5em 0 .5em 0;
}

.dataset-container {
    flex: auto;
    min-height: 100%;
    width: 20vw;
    overflow: hidden; 
}

.dataset-display {
    width: 80vw;
    padding: 1em;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
}

.dataset-display h1 {
    color: white;
}

.dataset-display p {
    color: white;
    overflow: hidden;
}

.dataset-display img {
    padding: .5em;
    height: auto;
}

.dataset-result {
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
}

.dataset-result img {
    width: 35vw;
}

.dataset-title {
    width: 35vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    object-fit: cover;
}

.returnButtonContainer {
    margin-top: auto;
    padding-bottom: 1em;
    overflow: hidden;
}

@media all and (max-width: 1200px) {
    .dataset-display {
        grid-template-columns: auto;
        padding-top:7vh;
    }
    .dataset-result {
        grid-template-columns: auto;
    }
    .dataset-title {
        width: 60vw;
    }
    .dataset-result img {
        width: 60vw;
    }
    .dataset-container {
        width: 30vw;
    }
    .dataset-description {
        width:30vw;
    }
}

#cellType {
    position: relative;
    text-align: center; 
    display: flex;
    align-items: center; 
    justify-content: center;
  }
  
  #cellType img {
    max-width: 100%; 
    height: auto;
  }
  
  .button {
    position: absolute;
    top: 8%;
    transform: translateY(-50%);
    color: black;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.0); 
     border: none;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .previous-button {
    left: 10px;
  }
  
  .next-button {
    right: 10px; 
  }
  