.btn-1 {
    background-color: #49bb79;
    border-color: #49bb79;
    color: white;
    padding: 3px 6px;
}

.btn-1:hover {
    background-color: #49bb78c8;
    border-color: #49bb78c8;
    color: white;
}

.btn-2 {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
    padding: 3px 6px;
}

.btn-2:hover {
    background-color: #f39c12c8;
    border-color: #f39c12c8;
    color: white;
}

.btn-3 {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
    padding: 3px 6px;
}

.btn-3:hover {
    background-color: #e74c3cc8;
    border-color: #e74c3cc8;
    color: white;
}

.btn-4 {
    background-color: rgb(124, 181, 255);
    border-color: rgba(148, 194, 255, 0.829);
    color: white;
    padding: 3px 6px;
}

.btn-4:hover {
    background-color: rgba(148, 194, 255, 0.804);
    border-color: rgba(148, 194, 255, 0.804);
    color: white;
}

html,
body {
    overflow-x: hidden;
}

/* === Scrollbar tipis garis hijau === */
::-webkit-scrollbar {
    width: 2px;
    /* vertikal */
    height: 2px;
    /* horizontal */
}

::-webkit-scrollbar-track {
    background: transparent;
    /* track transparan */
}

::-webkit-scrollbar-thumb {
    background-color: #1E8449;
    /* hijau TrustFund */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #27AE60;
    /* hijau lebih terang saat hover */
}

/* Firefox */
* {
    scrollbar-width: thin;
    /* tipis */
    scrollbar-color: #1E8449 transparent;
    /* hijau di atas transparan */
}

#table,
#table th,
#table td,
#table input,
#table select {
    font-size: 0.8rem;
    font-weight:500;
}


/* Table umum */
.table.dataTable {
    font-size: 0.8rem;
    margin-bottom: 0;
    width: 100% !important;
}

/* Header */
.table.dataTable thead th {
    color: #495057;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

/* Body */
.table.dataTable tbody td {
    padding: 0.5rem 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

/* Striping alternatif */
.table.dataTable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Custom Pagination DataTables */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 30px;
    text-align: right;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 3px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #F39C12 !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #F39C12 !important;
    color: #fff !important;
    border: 1px solid #F39C12;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: 10px;
}

/* Default pagination */
.page-link {
    color: #fff !important;
    background-color: #f39d12 !important;
    border-color: transparent !important;
}

/* Hover */
.page-link:hover {
    color: #020202 !important;
    background-color: #f39d12 !important;
    border-color: transparent !important;
}

/* Active (yang sedang terpilih) */
.page-item.active .page-link {
    color: #020202 !important;
    background-color: #f39d12 !important;
    border-color: transparent !important;
}

.form-control:focus {
    border-color: #1E8449 !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.form-check-input:focus {
    border-color: #1E8449 !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.form-select:focus {
    border-color: #1E8449 !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.select2-container {
    width: 100% !important;
}

