/* Styling lengkap untuk DataTable */
.dataTables_wrapper .dataTable {
    border: 1px solid #c8ced3;
    border-radius: 4px;
    overflow: hidden;
}

.dataTables_wrapper .dataTable thead th {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #c8ced3;
    border-bottom: 2px solid #adb5bd;
    color: #495057;
    font-weight: 600;
    padding: 12px 8px;
    white-space: nowrap;
}

.dataTables_wrapper .dataTable tbody td {
    border: 1px solid #c8ced3;
    padding: 10px 8px;
    vertical-align: middle;
}

/* Zebra striping untuk baris */
.dataTables_wrapper .dataTable tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.dataTables_wrapper .dataTable tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
    transition: background-color 0.3s;
}

/* Styling untuk kolom aksi */
.dataTables_wrapper .dataTable td:last-child {
    white-space: nowrap;
    text-align: center;
}

/* Responsive design untuk mobile */
@media screen and (max-width: 767px) {
    .dataTables_wrapper .dataTable th,
    .dataTables_wrapper .dataTable td {
        padding: 6px 4px;
        font-size: 12px;
    }
    
    .btn-aksi {
        padding: 3px 6px;
        font-size: 11px;
        min-width: 45px;
    }
}

.form-pencairan {
    border-style: groove;
}

/* Untuk semua cell di tabel */
table td, table th {
    vertical-align: middle !important;
}

/* Atau spesifik untuk kolom Nama Produk */
table td:first-child, table th:first-child {
    vertical-align: middle;
    text-align: center; /* Untuk horizontal juga di tengah */
}

.text-only {
    background: none !important;
    border: none !important;
    color: inherit !important;
    cursor: default !important;
    font-size: 2em !important; 
    font-weight: bold !important;
    padding: 0 !important;
}