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;
}

#applyFilterBtn {
  width: auto;
}

@keyframes quickBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Preloader styling */
#preloader {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
  z-index: 9999; /* Ensure it's on top of other content */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Blinking effect */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink-effect {
  animation: blink 1s infinite;
}
