.low-stock-all-button {
  position: absolute;
  top: 1.15rem;
  right: 1.25rem;
  border: 1px solid rgba(253, 230, 138, 0.7);
  border-radius: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.low-stock-all-button:hover { background: rgba(245, 158, 11, 0.35); }

.low-stock-modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.75);
}

.low-stock-modal {
  width: min(100%, 38rem);
  max-height: min(80vh, 42rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: #111c2b;
  color: #f8fafc;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
}

.low-stock-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.low-stock-modal-header h2 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.low-stock-modal-close { border: 0; background: transparent; color: #cbd5e1; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.low-stock-modal-content { display: grid; gap: 0.65rem; padding: 1rem 1.25rem 1.25rem; }
.low-stock-modal-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.8rem 0.9rem; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 0.55rem; background: rgba(255, 255, 255, 0.08); }
.low-stock-modal-row strong, .low-stock-modal-row span { display: block; }
.low-stock-modal-row span { margin-top: 0.2rem; color: #94a3b8; font-size: 0.78rem; }
.low-stock-modal-row b { min-width: 2rem; border-radius: 0.4rem; background: rgba(251, 191, 36, 0.25); color: #fde68a; padding: 0.35rem 0.5rem; text-align: center; }
