/* Vyhledávací okno */
.newContainer {
    background-color: white;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    max-width: 500px;
    margin: 0 auto;
}

.newContent {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px
}

#adresInput {
    margin-top: 10px;
    width: 100%;
    height: 45px;
    font-size: 25px;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 0 5px grey;
    padding-left: 10px;
}
.autocomplete {
    background-color: var(--grey-light);
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    /* height: 30vh; */
    overflow: scroll;
}

.autocomplete p {
    margin: 0;
    padding: 5px;
    cursor: pointer;
    color: black;
    z-index:999;
}

.autocomplete p:hover {
    box-shadow: 0 0 3px black;
    background-color: white;
    border-radius: 10px;
}

#selectBtn {
    width: 100%;
    border-radius: 10px;
    height: 45px;
    border: none;
    background-color: var(--primare);
    font-size: 30px;
    color: white;
    cursor: pointer;
    bottom: 40px;
}

#selectBtn:hover {
    opacity: 0.7
}