.fld {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(203 213 225);
  outline: none;
  font-size: 0.875rem;
}

.fld:focus {
  border-color: #1a365d;
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgb(241 245 249);
  color: rgb(71 85 105);
}

.status-pill.sent {
  background: rgb(219 234 254);
  color: rgb(29 78 216);
}

.status-pill.accepted,
.status-pill.paid {
  background: rgb(220 252 231);
  color: rgb(21 128 61);
}

.status-pill.declined {
  background: rgb(254 226 226);
  color: rgb(185 28 28);
}

.status-pill.overdue {
  background: rgb(254 243 199);
  color: rgb(180 83 9);
}

.print-only {
  display: none;
}

@media print {
  body {
    background: white;
  }

  .no-print,
  .fixed {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }
}
