/* Background overlay */
/* #loading-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; */
/* Hidden by default */
/* justify-content: center;
  align-items: center;
  z-index: 9999;
} */

/* Loading box */
/* .loading-box {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
} */

/* Spinner */
/* .spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  animation: spin 1s linear infinite;
} */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* scrollbar tipis dan halus */
.scroll-thin::-webkit-scrollbar {
  width: 6px;
}

.scroll-thin::-webkit-scrollbar-track {
  background: transparent;
  /* warna belakang */
}

.scroll-thin::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.4);
  /* warna scrollbar */
  border-radius: 9999px;
  /* biar bulat */
}

.scroll-thin::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.6);
}

/* untuk Firefox */
.scroll-thin {
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 100, 100, 0.4) transparent;
}

div.top {
  display: flex;
  justify-content: flex-end;
  /* dorong ke kanan */
  margin-bottom: 10px;
  /* kasih jarak dari table */
  font-size: 10pt;
}

div.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.fc-event {
  cursor: pointer !important;
}

.table-custom {
  border-collapse: collapse;
  width: 100%;
}

.table-custom,
.table-custom>thead>tr,
.table-custom>thead>tr>th,
.table-custom>tbody>tr>td {
  border: 1px solid;
}

.table-custom>thead>tr>th,
.table-custom>thead>tr>td,
.table-custom>tbody>tr>td {
  padding: 10px;
}

.select2-selection__rendered {
    margin-top: 5px !important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px !important;
}

/* ===== LIGHT MODE (DEFAULT) ===== */
.select2-container--default .select2-selection--single {
    background-color: #ffffff;
    border-color: #d1d5db;
    color: #111827;
}

.select2-container--default .select2-results__option {
    color: #111827;
}

/* ===== DARK MODE ===== */
body.dark .select2-container--default .select2-selection--single {
    background-color: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
}

body.dark .select2-dropdown {
    background-color: #1f2937;
    border-color: #374151;
}

body.dark .select2-results__option {
    color: #e5e7eb;
}

body.dark .select2-results__option--highlighted {
    background-color: #2563eb;
    color: #ffffff;
}

body.dark .select2-search__field {
    background-color: #111827;
    color: #e5e7eb;
    border-color: #374151;
}