/*
    But: CSS general
    Auteur: Antoine Egger
    Date: 09.06.2022
 */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
* {
    font-family: 'Ubuntu', sans-serif;
    margin: 0 auto;
}

body{
    background-color: #777;
}

header {
    background-color: #f5f5f5;
    padding: 2em;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.container {
    padding-top: 3rem;
    display: flex;
}

footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.button {
    display: flex;
    background-color: aqua;
    color: black;
    padding: 20px;
    font-size: 26px;
    border-radius: 1px;
    border: 4px solid lightskyblue;
    margin-top: 3rem;
}
.button:hover {
    background-color: blue;
    color: white;
    cursor: pointer;
}
#searchBar {

    border-radius: 1px;
    padding: 20px;
    font-size: 26px;
    text-align: left;
    border: 4px solid lightskyblue;
    display: flex;
}
.output {
    border-radius: 1px;
    padding: 20px;
    font-size: 26px;
    text-align: left;
    border: 4px solid lightskyblue;
    display: flex;
    margin-bottom: 20px;
    color: black;
}
#uuid{
    width: fit-content;
}
tr{
    border-radius: 1px;
    padding: 20px;
    font-size: 26px;
    text-align: left;
    border: 4px solid lightskyblue;
    display: flex;
    background-color: #f5f5f5;
}
#mapid{
    width: 130em;
    height: 65em;
}
#output-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.label{
    font-size: 20px;
    padding-bottom: 10px;
    text-decoration: underline;
    color: black;
}
.smallbutton{
    display: flex;
    background-color: aqua;
    color: black;
    padding: 2px;
    font-size: 12px;
    border-radius: 1px;
    border: 4px solid lightskyblue;
    margin-top: 10px;
}
.smallbutton:hover{
    background-color: blue;
    color: white;
    cursor: pointer;
}

@media only screen and (max-width: 1400px) {
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
    #username-label{
        margin-top: 20px;
    }
}