*{
    font-family: system-ui
}
body {
    margin: 0;
    padding: 0;
}
.center-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#locationSelect {
    display: flex;
    align-items: center;
    padding: 10px;
    flex-direction: column;
}
#sizeFilter {
    width: 200px;
}
#sortControls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    flex-direction: row;
    position: sticky;
    top: 0;
    background-color: rgb(var(--mdui-color-surface-container-high));
    z-index: 1000;
}
#navigationRail {
    background-color: rgb(var(--mdui-color-surface-container-low));
}
#sortControls:first-child {
    margin-right: 10px;
}
.loading-message-2 {
    width: 100%;
    text-align: center;
}
#dropArea {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 2px dashed rgb(var(--mdui-color-primary));
    border-radius: 10px;
    margin-top: 20px;
}
.hidden {
    display: none !important;
}