.display table{
    overflow-x: auto;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.custom-modal.show {
  display: block;
}

.custom-modal-backdrop {
    position: relative;
}

.custom-modal-dialog {
   position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 700px;
    height: 600px;
    background: #fff;
    border-radius: 6px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 10px rgb(0 0 0 / 53%);
    overflow: hidden;
    border: 1px solid #33333355;
}

.custom-modal-header {
  padding: 16px;
  border-bottom: 1px solid #ccc;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-body {
  padding: 16px;
  overflow-y: auto;
  flex-grow: 1;
}

.custom-modal-footer {
  padding: 12px 16px;
  border-top: 1px solid #ccc;
  text-align: right;
  background: #f5f5f5;
}

.custom-modal-close {
  background: #ccc;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}
