
/* Ground Meat Calculator */

.calc-ground-meat-box {
  border: 1px solid #900;
  border-radius: 0.50rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.calc-ground-meat-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px;
  background: #900;
}
.calc-ground-meat-table > div {
  background: #FFF;
  padding: 1rem
}
.calc-ground-meat-spacer {
  grid-column: span 2;
}

.calc-ground-meat-table > div.calc-ground-meat-hlite {
  background: #F1F1F1;
}

.calc-ground-meat-input {
  width: 4rem !important;
  text-align: right !important;
  font-weight: bold !important;
  border: 1px solid #CCC !important;
  border-radius: 5px !important;
  padding: 8px !important;
}
.calc-ground-meat-edit {
  background-color: #FF0 !important;
  border: 1px solid #CCC !important;
  border-radius: 5px !important;
  padding: 8px !important;
}
.calc-ground-meat-total {
  background-color: #F00;
  border: 1px solid #900;
  border-radius: 5px;
  padding: 8px;
  color: #FFF;
}
