html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#main-content {
    flex: 1 0 auto;
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
}

#autocomplete-list {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
}

.autocomplete-active {
    background-color: #e9ecef;
}

footer {
    flex-shrink: 0;
    padding-bottom: 2rem;
}