html,
body {
  background-color: #f9f6ee;
  margin: 15px 0px 5px 2px;
  padding: 0px 0px 5px 2px;
  overflow: hidden;
}

.contentTable {
  background-color: #f9f6ee;
  display: flex;
  flex-flow: column;
  height: calc(100vh - 20px);
}

.tab-content {
  flex: 1;
  overflow-y: scroll;
}

tr {
  cursor: default;
}

.myBtn {
  width: 70px;
}

.loading-spinner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid rgba(0, 0, 255, 0.1); /* Blue color */
  border-left-color: #0d6efd; /* Blue color */
  animation: spin 1.5s linear infinite;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
