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;
}
.employeeTable img {
  width: 30px
}




#loc-bin-delete {
  color: #df2c14
}

.add-button-location button {
  background: var(--green);
  color: #fff;
  height: 40px;
  width: 250px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700
}

.add-button-location button i {
  font-weight: bold
}

#addLocationModal .modal-header {
  background: var(--green);
  color: #fff
}

#addl-left-arrow {
  margin: 0!important;
  font-size: 2rem;
  padding: 0;
  color: #fff
}

tr {
  cursor: default;
}

.myBtn {
  width: 70px;
}
#filterBtn {
  border-radius: 0 !important;  /* Removes the rounding of the corners */
}

/* Preloader CSS */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
