/* Library Value Calculator Public Styles */
#library_value_calculator {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
#library_value_calculator table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
#library_value_calculator table th:first-of-type {
  width: 15%;
}
#library_value_calculator table th:nth-of-type(2) {
  width: 40%;
}
#library_value_calculator table th:nth-of-type(3),
#library_value_calculator table th:nth-of-type(4) {
  width: 22.5%;
}
#library_value_calculator th, #library_value_calculator td {
  border: 1px solid #000;
  padding: 12px;
}
/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Make sure $ symbol is inline */
.lrsCurrency {
  white-space: nowrap;
}
.lrsCurrencySymbol {
  line-height: 1;
  margin-right: 0.25rem;
}
.lrsCurrencyInput[type="text"] {
  width: 90%;
  box-sizing: border-box;
  min-width: 0;
}