body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#TopMenu {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    background-color: #2e3d96;
}

#AvailabilityIndicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 15px;

    
    
}

#Main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}

#Display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
}


#ChooseTime {
    color: whitesmoke;
    font-size: 1.17em;
    font-weight: bold;
    margin-left: auto;
}

#PageName {
    color: whitesmoke;
    font-size: 1.17em;

}

#spot {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 10px;
}

#DisplayedText {
    white-space: pre-line;
    text-align: center;
}

#DisplayedImage {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hidden {
    display: none;
}

#Icon {
    height: 3em;
    object-fit: contain;

    margin-left: 15px;
    margin-right: 5px;
}

@media (max-width: 600px) {
    #ChooseTime label {
        display: none;
    }
    #PageName, #Icon{
        font-size: 0.9em;
    }
    
}