/* Basic modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
.modal[style*="display: block"] {
  overflow-y: auto;
}
body:has(.modal[style*="display: block"]) {
  overflow: hidden;
}

.modal-content {
  background: white;
  margin: 4% auto;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-weight: bold;
}

#popup-modal .fail {

}

.pallet-option > div {
    border-color: #d1d5db;
}

.pallet-option.active > div {
    border-color: #2563eb;
    background: #eff6ff;
}
#goods_in_list{

    max-width: 70vw;
}