
.container {
    overflow-x: hidden;
    /* height: 100vh;  */
    width: 100vw; 
    display: flex;
    flex-direction: column; /* This will stack child elements vertically */
    justify-content: center; /* This will center the buttons vertically */
    align-items: center; /* This will center the buttons horizontally */
    box-sizing: border-box;
    background-color: white;
}

.choice-button {
    width: 90vw; 
    padding: 20px 30px;
    border: 1px solid lightgray;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 50px; /* Optional: To give some space between the buttons */
    margin-bottom: 50px; /* Optional: To give some space between the buttons */
}

.choice-button:hover {
    background-color: white;
}



#myInput-container {
    position: relative;
    width: 300px; /* Adjust this value as needed */
    margin: auto;
}
#myInput {
    width: 100%;
    padding: 25px 20px;
    font-size: 40px;
    border: 2px solid #ccc;
    border-radius: 62px;
    box-sizing: border-box;
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}