/* style.css */
body {
  background: #f7f7f7;
}

.container {
  max-width: 1100px;
}

/* Keep footer always bottom */
footer {
  position: relative;
}

/* Print helpers */
@media print {
  body {
    background: none;
  }

  nav,
  .btn,
  .no-print {
    display: none !important;
  }
}

/* Form Enhancements */
.item-row .form-label {
  font-weight: 500;
  margin-bottom: 4px;
}

.item-row input,
.item-row select {
  width: 100%;
}

/* Optional: Make remove button smaller on mobile */
@media (max-width: 768px) {
  .removeRow {
    width: 100%;
    margin-top: 0.5rem;
  }
}
