body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
}

/* Nyembunyiin scroll bar */
::-webkit-scrollbar {
  display: none;
}

/* Biar tetap bisa scroll */
body {
  overflow: scroll;
}


/*  */

/* Styling untuk SweetAlert2 */
.swal2-popup {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  border-radius: 30px;
  color: #333;
}

.swal2-title {
  color: #333;
  font-weight: bold;
}

.swal2-confirm,
.swal2-cancel {
  border-radius: 30px;
  width: 120px;
}

.swal2-confirm {
  background-color: #202938;
  color: #fff;
}

.swal2-cancel {
  background-color: #dfdfdf;
  color: #333;
}

/* Backdrop filter */
.swal2-backdrop-show {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.5);
}

/* Transisi untuk dark mode */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode {
  background-color: rgb(29, 29, 29);
  color: #FFFFFF;
}

.dark-mode .bg-b {
  background-color: #1f1f1f;
}

.dark-mode .bg-gray-200 {
  background-color: #333;
}

.dark-mode .text-gray-800 {
  color: #FFFFFF;
}

/* Transisi ikon */
.icon-transition {
  transition: color 0.3s ease;
}

/*  */