        .d-flex { display: flex !important; }
        .d-none { display: none !important; }
        @media (min-width: 576px) { .d-sm-block { display: block !important; } }
        .align-items-center { align-items: center !important; }
        .justify-content-between { justify-content: space-between !important; }
        .justify-content-center { justify-content: center !important; }
        .gap-2 { gap: 0.5rem !important; }
        .gap-3 { gap: 1rem !important; }
        .flex-column { flex-direction: column !important; }
        .p-1 { padding: 0.25rem !important; }
        .p-2 { padding: 0.5rem !important; }
        .p-3 { padding: 1rem !important; }
        .p-4 { padding: 1.5rem !important; }
        .py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
        .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
        .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
        .px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
        .px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
        .ps-3 { padding-left: 1rem !important; }
        .ps-4 { padding-left: 1.5rem !important; }
        .mb-0 { margin-bottom: 0 !important; }
        .mb-1 { margin-bottom: 0.25rem !important; }
        .mb-2 { margin-bottom: 0.5rem !important; }
        .mb-3 { margin-bottom: 1rem !important; }
        .mb-4 { margin-bottom: 1.5rem !important; }
        .mt-2 { margin-top: 0.5rem !important; }
        .me-1 { margin-right: 0.25rem !important; }
        .me-2 { margin-right: 0.5rem !important; }
        .me-3 { margin-right: 1rem !important; }
        .ms-1 { margin-left: 0.25rem !important; }
        .ms-3 { margin-left: 1rem !important; }
        .fw-bold { font-weight: 700 !important; }
        .fw-medium { font-weight: 500 !important; }
        .fw-semibold { font-weight: 600 !important; }
        .fs-4 { font-size: 1.5rem !important; }
        .fs-5 { font-size: 1.25rem !important; }
        .fs-6 { font-size: 1rem !important; }
        .text-muted { color: #6c757d !important; }
        .text-dark { color: #212529 !important; }
        .text-primary { color: #094085 !important; }
        .text-danger { color: #dc3545 !important; }
        .text-secondary { color: #6c757d !important; }
        .bg-light { background-color: #f8f9fa !important; }
        .bg-primary { background-color: #094085 !important; }
        .border { border: 1px solid #dee2e6 !important; }
        .border-0 { border: 0 !important; }
        .border-bottom { border-bottom: 1px solid #dee2e6 !important; }
        .border-start { border-left: 1px solid #dee2e6 !important; }
        .rounded { border-radius: 0.375rem !important; }
        .rounded-3 { border-radius: 0.5rem !important; }
        .rounded-circle { border-radius: 50% !important; }
        .rounded-pill { border-radius: 50rem !important; }
        .shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important; }
        .shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
        .shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }
        .position-relative { position: relative !important; }
        .position-absolute { position: absolute !important; }
        .top-0 { top: 0 !important; }
        .start-0 { left: 0 !important; }
        .end-0 { right: 0 !important; }
        .w-100 { width: 100% !important; }
        .h-100 { height: 100% !important; }
        .object-fit-cover { object-fit: cover !important; }
        .overflow-hidden { overflow: hidden !important; }
        .opacity-50 { opacity: 0.5 !important; }
        .opacity-75 { opacity: 0.75 !important; }
        .lh-1 { line-height: 1 !important; }
        .bg-opacity-10 { background-color: rgba(9, 64, 133, 0.1) !important; }
        .hide { display:none !important; }
        :root {
            --primary-blue: #094085;
            --hover-blue: #0d6efd;
            --bg-light: #f4f6f9;
        }
        
        body {
            background-color: var(--bg-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1rem;
        }
        #sidebar {
            width: 260px;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            background: #fff;
            border-right: 1px solid #e9ecef;
            overflow-y: auto;
            z-index: 1000;
            transition: all 0.3s ease-in-out;
        }
        #sidebar a:hover, #sidebar a:focus { text-decoration: none; }
        #sidebar .nav-link {
            color: #555;
            padding: 0.6rem 1.5rem;
            font-weight: 500;
            display: block;
            font-size: 15px; 
        }
        #sidebar small.d-block {
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        #sidebar .nav-link:hover, #sidebar .nav-link.active {
            color: var(--primary-blue);
            background-color: #f0f4f8;
            border-right: 3px solid var(--primary-blue);
        }
        #main-content {
            margin-left: 260px;
            padding: 0;
            transition: all 0.3s ease-in-out;
        }
        .top-navbar {
            background: #fff;
            border-bottom: 1px solid #e9ecef;
            padding: 15px 25px;
        }

        body.sidebar-hidden #sidebar { margin-left: -260px; }
        body.sidebar-hidden #main-content { margin-left: 0; }
        .cursor-pointer { cursor: pointer; }
        .hover-bg-light:hover { background-color: #f8f9fa; }
        .hover-bg-danger-light:hover { background-color: #fff5f5; color: #dc3545 !important; }
        #sidebar .nav-link[data-toggle="collapse"] .bi-chevron-down {
            transition: transform 0.3s ease;
        }
        #sidebar .nav-link[data-toggle="collapse"][aria-expanded="true"] .bi-chevron-down {
            transform: rotate(180deg);
        }
        #notifikasi .modal-sm { max-width: 300px; margin: 30px auto; }
        .notification-wrapper {
            position: relative;
            padding-top: 45px;
            border: none !important;
            border-radius: 16px !important;
        }
        .circle-icon {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background-color: #f48fb1;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 15px rgba(244, 143, 177, 0.4); 
            z-index: 1055;
        }
        .circle-icon i { color: #fff8e1; font-size: 36px; }
        .card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
            border: 1px solid rgba(0,0,0,.125);
            border-radius: .375rem;
        }
        .card-body {
            flex: 1 1 auto;
            padding: 1rem;
        }
        .bg-primary.bg-opacity-10 { background-color: rgba(9, 64, 133, 0.1) !important; }
        .bg-success.bg-opacity-10 { background-color: rgba(25, 135, 84, 0.1) !important; }
        .bg-danger.bg-opacity-10 { background-color: rgba(220, 53, 69, 0.1) !important; }
        .text-success { color: #198754 !important; }
        .text-decoration-none { text-decoration: none !important; }
        .text-truncate {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .d-inline-block { display: inline-block !important; }
        @media (min-width: 768px) {
            .flex-md-row { flex-direction: row !important; }
            .align-items-md-center { align-items: center !important; }
        }
        .pagination { display: flex; padding-left: 0; list-style: none; margin: 0; }
        .page-item .page-link {
            position: relative;
            display: block;
            color: #094085;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #dee2e6;
            padding: .375rem .75rem;
            margin-left: -1px;
        }
        .page-item.active .page-link {
            z-index: 3;
            color: #fff;
            background-color: #094085;
            border-color: #094085;
        }
        .input-group-addon.bg-white { background-color: #fff !important; }
        .border-end { 
            border-right: 1px solid #e0e0e0 !important; 
        }
        .text-14 { font-size: 14px !important; }
        .text-16 { font-size: 16px !important; }
        .text-18 { font-size: 18px !important; }
        .icon-28 { font-size: 28px !important; }
        .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
            text-decoration: none;
            color: #fff !important;
            background-color: #3276b1;
        }
        #cariform {
            float: left;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        #cariform .row {
            margin: 0;
        }
        #cariform .col-md-3 {
            width: 320px !important; 
            padding: 0;
        }
        #table1_length, 
        .dataTables_length {
            float: left !important;
            margin-top: 0 !important;
            margin-bottom: 3px !important;
            padding-top: 2px;
        }
        .dataTables_length select {
            display: inline-block !important;
            width: 75px !important;
        }
        #table1_filter, 
        .dataTables_filter {
            float: right !important;
            margin-top: 0 !important;
            padding-top: 2px;
        }
        .dataTables_filter input {
            display: inline-block !important;
            width: auto !important;
        }
        .dataTables_wrapper::after {
            content: "";
            display: table;
            clear: both;
        }
        .jarviswidget {
            margin: 0 !important;
            background-color: #ffffff !important;
            border: none !important;
            box-shadow: none !important;
            height: auto !important;
            min-height: 100px;
            padding: 3px 6px !important;
            padding-top:3px !important;
            padding-right:6px !important;
            padding-left: 6px !important;
            padding-bottom: 20px !important;
        }
        .jarviswidget > header {
            background: #ffffff !important;
            border-bottom: 1px solid #eeeeee !important;
            color: #333 !important;
        }
        .jarviswidget > div.jarviswidget-editbox {
            display: none !important;
        }
        
        .jarviswidget > div.widget-body {
            background-color: #ffffff !important;
            border: none !important;
            padding: 20px !important;
            height: auto !important;
            overflow: hidden;
        }
        .jarviswidget:after {
            content: "";
            display: table;
            clear: both;
        }
        .dataTable a.btn,
        .dataTable button {
            padding: 3px 6px;
            margin-bottom:3px;
        }