/* Ensure the sales history modal container can go fullscreen */
#salesHistoryChartModalContainer .modal.fade.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050; /* Ensure it's above other content, adjust if needed */
}

#salesHistoryChartModalContainer .modal-dialog.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
}

#salesHistoryChartModalContainer .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
