:root {
    --theme-color: rgb(11, 86, 138);
    --bar-color: 41, 169, 216;
    --text-color: white;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
}

#left-panel {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#right-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#message-panel {
    position: relative;
    height: 40px;
    line-height: 50px;
    display: block;
    overflow: hidden;
}

#map-container {
    flex-grow: 1;
    margin: 10px;
}

#plowops-map {
    /* position: absolute; */
    /* set dynamically in JS
      top: 108px;
      height: calc(100vh - 108px);
    */
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.plowops-logo {
    position: fixed;
    right: 15px;
    bottom: 10px;
}

.maplibregl-ctrl-attrib-inner {
    display: none;
}

.hidden {
    display: none !important;
}
