  .search-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#searchInput {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    border: #c22627 2px solid;
    border-radius: 5px;
    height: 40px;
}

.results-container {
    position: absolute;
    width: 100%;
    display: none; /* Hidden by default */
}

.results-container div {
    padding: 15px 10px;
    cursor: pointer;
    border-bottom: 1px dashed #eee;
}

.results-container div a {
    color: #333333;
    text-decoration: none;
}

.results-container div:last-child {
    border-bottom: none;
}

.back-icon {
    padding: 5px 10px;
    height: 18px;
}
.search-button {
    background-color: #c22627;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    height: 40px;
    margin-left: 5px;
}
#searchMenu {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}
#searchMenu a {
    text-decoration: none;
    background-color: #fbfbfb;
    color: #333333;
    border: #ffffff 1px solid;
    border-bottom-color: #fbfbfb;
    font-size: 14px;
    padding: 10px 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    font-size: 16px;
}

#searchMenu a:hover {
    background-color: #f3e2e2;
}

#searchMenu a.active {
    background-color: #ffffff;
    color: #c22627;
    border: #fbfbfb 1px solid;
    border-bottom-color: #ffffff;
    font-weight: bold;
}
