#map-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 350px;
    height: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    cursor: grab;    
    user-select: none;      
}

#map-container.grabbing {
    cursor: grabbing;  
}

#map {
    width: 100%;
    height: 100%;
}

#map-container:hover {
    background-color: #f2f2f2;       
}

.legenda {
    height: 3vh;
}

.logo {
    height: 3vh;
    float: right;
}

.target {
    height: 3vh;
    margin-top: 5%;
}

#screenshotResult {
    margin-bottom: 1%;
    width: 50%; 
}

#updatetime {
    font-size: 10px;
}