﻿/* Search Bar Styles */
.search-bar-container {
    padding-top: 8px;
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.input-wrapper {
    width: 100%;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    box-shadow: 0px 0px 8px #ddd;
    background-color: white;
    display: flex;
    align-items: center;
}

.search-bar:focus {
    outline: none;
}

.search-bar {
    background-color: transparent;
    border: none;
    height: 100%;
    font-size: 1.25rem;
    width: 100%;
    margin-left: 5px;
}

.search-result {
    padding: 10px;
}

.search-result-separator {
    padding: 10px;
    background-color: darkgray;
    width: 100%;
}

.search-result:hover {
    background-color: #efefef;
}

.results-list {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 8px #ddd;
    border-radius: 10px;
    margin-top: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.fill-div {
    margin-left: 0 !important;
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none !important;
}
