.flash {
  -moz-animation: flash 1s ease-out;
  -moz-animation-iteration-count: 1;

  -webkit-animation: flash 1s ease-out;
  -webkit-animation-iteration-count: 1;

  -ms-animation: flash 1s ease-out;
  -ms-animation-iteration-count: 1;
}

@keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fbf8b2;
  }
  100% {
    background-color: transparent;
  }
}

@-webkit-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fbf8b2;
  }
  100% {
    background-color: transparent;
  }
}

@-moz-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fbf8b2;
  }
  100% {
    background-color: transparent;
  }
}

@-ms-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fbf8b2;
  }
  100% {
    background-color: transparent;
  }
}

.container-scroll {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.scroll {
  position: absolute;
  width: 100%;
  height: 200px;
  overflow: auto;
}

.notification-list {
  max-height: 300px; /* Atur tinggi maksimal sesuai kebutuhan */
  overflow-y: auto; /* Aktifkan scroll vertikal saat konten melebihi tinggi */
}

.dataTables_length select {
  padding: 4px 8px;
  height: auto;
  line-height: 1.5;
  border-radius: 4px;
  font-size: 14px;
}

.dataTables_length {
  display: flex;
  align-items: center;
  gap: 8px;
}

select:not([size]) {
  background-image: unset !important;
}

/* New styles for horizontal scrolling noteTabs */
.note-tabs-container {
  max-width: 930px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent; /* For Firefox */
}

.note-tabs-container::-webkit-scrollbar {
  height: 6px; /* Horizontal scrollbar height */
}

.note-tabs-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.note-tabs-container::-webkit-scrollbar-track {
  background: transparent;
}
