[v-cloak] {
  display: none;
}

.fld {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  color: #1e293b;
  outline: none;
}
.fld:focus {
  border-color: #6366f1;
}
.lbl {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
}

/* The invoice is cloned to a DIRECT <body> child for printing. */
#print-holder {
  display: none;
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }
  html,
  body {
    background: #fff !important;
  }
  body.printing > #app {
    display: none !important;
  }
  body.printing > #print-holder {
    display: block !important;
  }
  #print-paper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
