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%;
}

/* wrapper resizable */
/* Container pembungkus agar handle muncul dengan benar */
.resizable-container {
    display: block !important;
    position: relative;
    overflow: hidden !important; /* Menghindari scroll ganda */
}

/* Style handle penarik di tengah */
.global-drag-handle {
    height: 12px;
    background: #f8f9fa;
    cursor: ns-resize;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ced4da;
    border-top: none;
    color: #adb5bd;
    font-size: 10px;
    transition: all 0.2s;
}

.global-drag-handle:hover {
    background: #e9ecef;
    color: #6c757d;
}

/* Ikon titik tiga di dalam handle */
.global-drag-handle i {
    pointer-events: none;
}