/* Badge kecil khusus admin navbar */
.badge-admin {
    font-size: 11px !important;
    padding: 3px 10px !important;
    border-radius: 10px !important;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* Badge global kecil */
.badge {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* Custom content wrapper margin */
.content-wrapper {
    margin-top: -30px;
}


/* Breadcrumb card style */
.breadcrumb-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    border: 1px solid #e3e6f0;
    background: #fff;
    margin-bottom: 1rem;
    margin-top: -40px;
    /* Tambahan margin-top */
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

/* Card shadow & border */
.card {
    box-shadow: 0 2px 16px rgba(60, 72, 100, 0.07);
    border-radius: 12px;
    border: 1px solid #f0f1f6;
}

/* Table style */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8fafc;
}

.table thead th {
    background: #f4f6fb;
    color: #3c4858;
    font-weight: 600;
    border-bottom: 2px solid #e3e6f0;
    vertical-align: middle;
}

.table td,
.table th {
    vertical-align: middle;
    border-color: #f0f1f6;
    font-size: 15px;
}

/* DataTables search and length */
.dataTables_filter input {
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    padding: 6px 12px;
    background: #f8fafc;
}

.dataTables_length select {
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    padding: 4px 8px;
    background: #f8fafc;
}

/* Pagination */
.dataTables_paginate .paginate_button {
    border-radius: 6px !important;
    border: none !important;
    background: #f4f6fb !important;
    color: #3c4858 !important;
    margin: 0 2px;
    padding: 4px 12px !important;
    font-weight: 500;
}

.col-no {
    width: 20px;
    text-align: center;
}

.col-amount {
    width: 60px;
    text-align: right;
}

.col-status {
    width: 60px;
    text-align: center;
}

.col-action {
    width: 70px;
    min-width: 70px;
    max-width: 80px;
    text-align: center;
}

.dataTables_paginate .paginate_button.current {
    background: #6777ef !important;
    color: #fff !important;
}

/* Info text */
.dataTables_info {
    color: #888;
    font-size: 13px;
    margin-top: 8px;
}

/* Action button */
.btn-primary,
.btn-primary:focus {
    background: #6777ef;
    border: none;
    box-shadow: none;
}

.btn-primary:hover {
    background: #4052d7;
}

/* Badge style */
.badge-success {
    background: #47c363;
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 8px;
}

.badge-danger {
    background: #fc544b;
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 8px;
}

/* Responsive table scroll */
.table-responsive {
    overflow-x: auto;
}

.table-responsive .table {
    width: 100%;
    min-width: 600px;
    /* atau unset jika tidak perlu */
    max-width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}