.swal-confirm-dr {
  background-color: #1464A2 !important;
  color: white !important;
  border-radius: 6px;
  font-weight: 600;
}
.swal-confirm-dr:hover {
  background-color: #114D7C !important;
}
.swal-cancel-dr {
  background-color: #e5e7eb !important;
  color: #333 !important;
  border-radius: 6px;
  font-weight: 500;
}

#progressBar {
  background-color: #22c55e; /* Tailwind green-500 */
  transition: width 0.3s ease;
}

.overflow-x-auto::-webkit-scrollbar {
        height: 6px;
      }

      .overflow-x-auto::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
      }

      .overflow-x-auto::-webkit-scrollbar-thumb:hover {
        background: #555;
      }

      .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
      }

#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D6AAD;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 9999;
    /* Tambahkan untuk efek loading */
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-transition-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

