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

/*Animation for refreshIcon*/
#refreshIcon {
  animation: none; 
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animation for filterIcon (blinking effect) */
#filterIcon {
  animation: none;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}


/* Animation for addIcon (zoom in and out effect) */
#addIcon {
  animation: none;
}

@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.7); }
  100% { transform: scale(1); }
}
