html,
body {
  background-color: #f9f6ee;
  margin: 5px 0px 5px 2px;
  padding: 5px 0px 5px 2px;
  overflow: hidden;
}

section {
  display: flex;
  flex-flow: column;
  height: calc(100vh - 20px);
}

.tab-content {
  flex: 1;
  overflow-y: scroll;
}

tr {
  cursor: default;
}

.myBtn {
  width: 70px;
}

/* Preloader styles */
#preloader {
  position: fixed;
  inset: 0; 
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simple spinner animation */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #0D6EFD;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Highlight icon and text on hover */
.custom-dropdown-item:hover {
  background-color: #0d6efd!important;
  color: white!important;
}