#printable {
  display: none;
}

@media print {
  #app {
    display: none !important;
  }

  #printable {
    /*display: block !important;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: auto !important;
  }

  @page {
    size: 90mm 90mm;
    margin: 0; /* or 5mm if you want breathing room */
  }

  body {
    margin: 0;
  }

  /* optional: center your SVG */
  svg#printable {
    display: block;
    margin: auto;
  }
        .print {
        display: inline !important;
        visibility: visible;
      }
}
 svg .cand,
 svg .solved {
 font-family: "Verdana", sans-serif;
 font-size: 3.5pt;          
 font-weight: normal;
 fill: #777;              
 stroke: none;            
 }
 
 /* new */

    svg .solved {
      font-family: Verdana, sans-serif;
      font-size: 10pt;
      font-weight: bold;
      text-anchor: middle;
      dominant-baseline: middle;
      fill: #000;
      stroke: none;
    }


    .printable {
      display: none;
    }

 

