.search-icon {
    align-content: center;
    height: 44px;
    background-color: white;
    border: 2px solid grey;
    border-left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.search-container input {
    width: 20%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 18px;
    height: 44px;
    border: 2px solid grey;
    /* border-right: 0; */
    padding: 0 10px;
}

.search-container input::placeholder {
    font-size: 16px;
}

.search-container {
    position: relative;
}

.search-list-container {
    position: absolute;
    right: 40%;
    width: 20%;
    z-index: 1000;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
    /* border: 1px solid #ddd; */
    border-top: none;
}


.search-list {
    display: none;
    margin: 0;
    /* Remove a margem padrão*/
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    list-style-type: none;
    padding-left: 0px;
    /* Remove o recuo padrão */
    /* max-width: 320px; */
}

.search-list li {
    cursor: pointer;
    /* width: 93%; */
    text-align: left;
    place-content: center;
    padding: 8px;
    padding-left: 10px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 12px;
}

.search-list li:hover {
    background-color: #95ff91;
    font-weight: bold;
}

.options {
    font-size: 14px !important;
}

@media screen and (max-width: 1130px) {

    .station-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

}
