@charset "UTF-8";

  #wrapDiv{
    display: flex;
    height: 100%;

  }
  #listDiv{
    width: 20%;
    height: 600px;
    overflow-y: scroll;
    
  }
  #map{
    height: 600px;
    width: 80%;
  }
  #listContent{
    height: 100px;
    width: 100%;
    box-sizing: border-box;
  }
  #lctitle{
    width: 100%;
    height: 50px;
  }
  
  .selectList{
    border: 1px solid black;
  }

  .selectedList{
    border: 3px solid blue;
  }

  #listDiv > button:hover{
    cursor: pointer;
  }