body{
  padding: 0;
  margin: 0;
  min-height: 100vh;
  overflow-y: auto;
}

.bg-login {
  background-image: url("../img/bg-login.png");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.login-card {
  max-width: 550px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* Transparan putih */
  backdrop-filter: blur(10px); /* Blur latar belakang */
  animation: fadeInUp 0.6s ease-in-out;
}

@media (max-width: 767.98px) {
  .login-card {
    padding: 1.5rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Customs Tabulator */
.tabulator {
    background-color: #f9f9f9;
    border: 1px solid #ced4da;
}

.tabulator .tabulator-header {
    background-color: #e6e6e6;
    border-bottom: 1px solid #ced4da;
    color: #767e86;
}

.tabulator .tabulator-tableholder .tabulator-table {
    color: #798189;
}

.tabulator .tabulator-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff; /* pastikan nggak transparan */
}

/* Styling hanya untuk body */
.tabulator .tabulator-cell.readonly-cell {
    /* background-color: #f8f9fa; */
    cursor: not-allowed;
}

.swal-popup-sm {
    width: 300px !important; /* default-nya 500px */
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.sidebar-link.current {
    color: #fff;
    font-weight: bold;
}

li.sidebar-item.showing > a {
    font-weight: bold;
}

/* customs datatable */
.dataTables_filter input {
    width: 130px !important; /* kecil tapi masih bisa dipakai */
    max-width: 100%;
}
