.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 4px solid black;*/
    /*border: 1px solid lightgray;*/
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
    padding-left: 10px;
    border-radius: 100px;
    background: #fff;
    z-index: 10;
}

.search-bar > input {
    margin: 10px;
    padding: 1px 2px;
    font-family: Roboto, sans-serif;
    border: 0;
    outline: 0;
}

/*input::placeholder {
  color: #ce292a;
  opacity: 0.5;
}*/

.search-input {
    width: 100%;
    font-size: 25px;
}

.search-button {
    position: relative;
    background: #ce292a;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    height: 45px;
    margin-right: 4px;
    border-radius: 100px;
}

.search-results {
    position: relative;
    background-color: #fff;
    padding-top: 25px;
    top: -23px;
    z-index: 9;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    font-family: Roboto, sans-serif;
    overflow-y: scroll;
    max-height: 70vh;
    display: none;
}

.search-results::-webkit-scrollbar {
  display: none;
}

.search-result {
    position: relative;
    padding: 20px;
    display: flex;
    /*top: 1px;*/
    flex-direction: column;
    border-bottom: 1px solid lightgray;
}

.result-name {
    font-weight: bold;
    font-size: 25px;
}
