.container {
  max-width: 720px !important;
}

table th,
table td {
  min-width: 70px; /* Adjust the value as needed */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  z-index: 1050; /* Higher than typical Bootstrap modals */
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}
