#apCashBox {
  margin: 18px 0;
}

#apCashBox h2 {
  margin: 0 0 6px;
}

.ap-cash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ap-cash-grid label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.ap-cash-grid input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  padding: 13px 14px;
  font-size: 18px;
  font-weight: 900;
}

.ap-cash-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ap-cash-results div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.05);
}

.ap-cash-results span {
  display: block;
  opacity: .78;
  font-weight: 800;
  margin-bottom: 5px;
}

.ap-cash-results strong {
  font-size: 24px;
}

.ap-cash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ap-cash-actions button {
  border: 0;
  border-radius: 16px;
  padding: 13px 16px;
  font-weight: 1000;
  cursor: pointer;
}

#apSaveCashBtn {
  background: #d4af37;
  color: #000000;
}

#apPrintCashBtn {
  background: rgba(255,255,255,.1);
  color: inherit;
  border: 1px solid rgba(255,255,255,.18);
}

.ap-ok {
  color: #d4af37;
}

.ap-minus {
  color: #ff6b6b;
}

.ap-plus {
  color: #ffd166;
}

@media(max-width: 760px) {
  .ap-cash-grid,
  .ap-cash-results {
    grid-template-columns: 1fr;
  }
}
