/* order.css - styles for the Lageranforderung preview (module) */

/* Not used by the current order.js (it inlines its own CSS in the print window),
   but keeping it is harmless. You can delete this file and the <link> if you want. */

.lager-preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lager-preview-frame {
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lager-preview-toolbar {
  padding: 8px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}