body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

#map-container {
    position: relative;
    height: calc(100vh - 50px);
    width: 100%;
}

#map {
    height: 100%;
    width: 100%;
}

#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.nav-tabs .nav-link {
    color: #495057;
}

.nav-tabs .nav-link.active {
    font-weight: bold;
    color: #0d6efd;
}

.tab-content {
    background-color: white;
}

@media (max-width: 768px) {
    #map-container {
        height: calc(100vh - 100px);
    }
}
