@font-face {
  font-family: "CustomFont";
  src: url("./Font.TTF");
}

body {
  font-family: "CustomFont", sans-serif;
  font-size: 16px;
}
@media print {
  body{
    width: 10cm;
    height: 15cm;
    padding: 20px;
    background: white;
    color: black;
  }
}
hr {
  border: none;
  border-top: .5px solid #000;
  margin: 0;
  padding: 0;

}
.content {
  white-space: normal;
  word-wrap: break-word;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  table-layout: fixed;
}
td, th {
  text-align: left;
}
.item-name {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.underline {
  border-bottom: .5px solid #000;
}