
  
  .container {
    padding: 10px 50px 30px 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    margin-top: 1rem;
    border-radius: 8px;
  }
  
  .title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .map-container {
    display: flex;
    gap: 20px;
  }
  
  #map {
    height: 500px;
    flex: 2;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .info-panel {
    flex: 1;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  .info-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .datos_comuna {
    padding: 10px 15px;
    background-color: white;;
    border-radius: 5px;
    margin: 15px;
  }
  
  .dato_comuna_titulo {
    font-weight: lighter;
    color: #a3a3a3;
    font-size: small;
  }
  
  .dato_comuna_detalle {
    font-weight: bold;
  }
  
  .placeholder {
    color: #666;
  }
  
  .legend {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-inline: 10rem;
  }
  
  .legend div {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .legend span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
  }
  