@font-face
{
    font-family: 'Libre Baskerville';
    src: url('/assets/fonts/baskervville-v1-latin-regular.woff');
}

html {
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}


body {
    font-family: 'Libre Baskerville';
    background-color: black;
    color:white;

    min-height: 100vh;
    min-height: -webkit-fill-available;

    min-width: 100vw;
    min-width: -webkit-fill-available;
}

main {
    height: 100vh;
    width: 100vw;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    max-height: 100vh;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
}

#sideMenu {
    background-color: black;
    color:white;
}

#logo {
    color: white;
    height:100px;
    font-size: 24px;
    vertical-align: bottom;
    padding-top:10px;
    padding-bottom:20px;
    margin-bottom:20px;
}

#logo img {
    width:100px;
    object-fit: contain;
    margin:5px;

}

#controls {
    margin-bottom: 10px;

}

#mapDetails {
    background: white;
    color:black;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 10px;
    border-radius: 10px;
}
.mapDetailsAttributes {
    padding-left:10px;
    padding-right: 10px;
}

.mapDetailsLabel {
    font-weight: bold;
}

#mapDetailsName {
    font-size: 18pt;
}

.debug {
    border: 1px solid red;
}

.debug-blue {
    border: 1px solid blue;
}

.debug-green {
    border: 1px solid green;
}



#map {
    width:100%;
    height:100vh;
}
.mapItem {
    font-size:18pt;
    margin-left:30px;
    cursor: pointer;
    display: block;
    color:white;
}


.mapItemEnabled {
    font-size:18pt;
    margin-left:30px;
    cursor: pointer;
    color:orange;
    font-weight: bolder;
}



@media (min-width: 1200px) {
    .sidebar {
        width: 300px;
        color: white;
    }    
    .map {
        color: white;
        height: -webkit-fill-available;
        width: -webkit-fill-available;
    }

    #mapDetails {
        min-height: 300px;
        max-height: 300px;
        width:100%;
    }
    
}

/* mobile */
@media (max-width: 1199px) {
    .sidebar {
        height: 300px;
        color: white;
    }    

    .map {
        color: white;
        width: 100vw;
        height:auto;
        height: -webkit-fill-available;
    }
    
    #mapDetails {
        width:50% !important;
    }

    #controls
    {
        width: 50% !important;
    }

    .mapItem {
        font-size: 36pt;
    }
    .mapItemEnabled {
        font-size: 36pt;
    }

}




  #debug {
    position: absolute;
    x: 10px;
    y: 10px;

    border: 1px solid white;
  }

