body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
.center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    width: 50px;
    height: 50px;
}
.map-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}
.geolocate-btn {
    background: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.mapboxgl-ctrl-top-left {
    top: 10px;
    left: 50px;
}
.map-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.map-logo:hover {
    opacity: 0.9;
}
.map-logo img {
    width: 50px;
    height: auto;
}
.map-title {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.metro-logo {
    position: absolute;
    bottom: 3%;
    left: 96%;
    z-index: 1000;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.metro-logo:hover {
    opacity: 0.9;
}
.metrobus-logo {
    position: absolute;
    bottom: 10%;
    left: 96%;
    z-index: 1000;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.metrobus-logo:hover {
    opacity: 0.9;
}
                #isocronas-controls-container {
                    background-color: transparent !important;
                    box-shadow: none !important;
                    border: none !important;
                    padding: 0 !important;
                }
                .isocronas-header {
                    font-weight: bold;
                    font-size: 12px;
                    padding: 8px 12px;
                    margin: 0 0 5px 0;
                    background-color: #000000;
                    color: white;
                    text-align: center;
                    border-radius: 4px 4px 0 0;
                    width: 100%;
                    box-sizing: border-box;
                    opacity: 0.8;
                }
                .isocronas-buttons-container {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 5px;
                    width: 100%;
                }
                .isocronas-toggle {
                    color: white;
                    margin: 0;
                    border-radius: 4px;
                    border: none;
                    cursor: pointer;
                    padding: 8px 12px;
                    width: 100%;
                    text-align: center;
                    font-size: 12px;
                    font-family: Arial, sans-serif;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.2s;
                    opacity: 0.7;
                }
                .isocronas-toggle i {
                    margin-right: 8px;
                    font-size: 14px;
                }
                .isocronas-toggle.active {
                    opacity: 1;
                    box-shadow: 0 0 8px rgba(0,0,0,0.5);
                }
                .isocronas-toggle:hover {
                    transform: scale(1.02);
                }