html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #222;
}

#viewport {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

/* MAPA */

#map {
    width: 4000px;
    height: 6000px;

    position: relative;
    top: 0;
    left: 0;

    background-image:url('/img/grasstile_s.png');
    background-repeat: repeat;

    transform-origin: top left;
}

/* RIGHT PANEL */
#right_panel {
    width:300px;
    height:80vh;
    padding: 10px;
    border-radius:15px;
    display:none;

    position: fixed;
    right:100px;
    top:50%;
    transform: translateY(-50%);
    background-color: aliceblue;
}

#right_panel.active {
  display: block;
}

/* POJAZD */

.vehicle {
    width: 100px;
    height: 100px;

    background-image: url('/img/bus.png');
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    
    z-index: 100;
    cursor: pointer;
}

.vehicle:hover {
    border-radius: 50%;
    box-shadow: inset 0 0 20px #fff;
    cursor: pointer;
}

.vehicle .status {
    position: absolute;

    left: 100%;   /* obok pojazdu */
    top: 50%;
    transform: translateY(-50%);

    margin-left: 10px;

    background: rgba(0,0,0,0.75);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;

    font-size: 28px;
    white-space: nowrap;

    pointer-events: none;
}

.loading {
    border:4px solid orangered;
}

.unloading { 
    border:4px solid rgb(0, 255, 34); 
}
