
/* Estilo para las marcas de estaciones */
.station-marker {
    width: 25px;
    height: 41px;
    margin-top: -41px;
    margin-left: -13px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    color: black;
    background-color: green; /* Cambiar el color de fondo a verde */
    white-space: nowrap; /* Evitar saltos de línea */
}

/* Estilo para los popups de estaciones */
.station-popup {
    background-color: black;
    color: white;
    font-size: 12px;
    padding: 4px;
    border-radius: 4px;
}