/* .search-panel {
  background-color: #8e5959;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
} */

#searchModal {
  position: fixed;
  inset: 0;                 /* top:0 right:0 bottom:0 left:0 */
  background: rgba(23, 23, 22, 0.9); /* optional backdrop */
  z-index: 9999;
  display: none;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  border: 5px solid #2BBEC3;
}

.search-topbar {
  flex: 0 0 auto;
  padding: 50px;
  /* border-bottom: 1px solid #ccc; */
}

.search-topbar, #searchResults{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.search-panel > h5{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 5%;
    font-size: 30px;
    color: #2BBEC3;
    font-family: 'Epilogue', 'Roboto', sans-serif;
}

#searchInput{
    font-family: 'Epilogue', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
    width: 90%;
    background-color: rgb(203, 190, 190);
}

#searchResults {
font-family: Georgia, 'Times New Roman', Times, serif;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px;
  scroll-behavior: smooth;
}

.close-button{
    border: none;
    position:relative;
    left: 5px;
    top: 9px;
    font-size: 40px;
    color: white;
    background-color: transparent;
    cursor: pointer;
}

#searchModal.is-open {
  display: flex;
}

.search-panel {
  min-height: 100vh;
}
