/* ============================================
   BENEFICIARIES MODULE - BOOTSTRAP 5 RESPONSIVE
   Optimized for Mobile-First Design
   ============================================ */

/* ============================================
   1. LAYOUT & CONTAINERS
   ============================================ */
.beneficiaries-wrapper,
.beneficiaries-dashboard {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 1rem;
}

/* ============================================
   2. PAGE HEADER
   ============================================ */
.page-header {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

/* Compact Button Card in Header */
.page-header .card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-header .card-body {
    padding: 0.5rem !important;
}

.page-header .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    min-height: 36px;
    white-space: nowrap;
}

.page-header .btn-sm i {
    font-size: 0.75rem;
}

.page-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.25rem 0;
}

.page-header p {
    color: #6c757d;
    margin: 0;
    font-size: 0.875rem;
}

.page-header .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    min-height: 34px;
    max-height: 34px;
    font-weight: 500;
}

/* ============================================
   3. FILTER CARD - COMPACT
   ============================================ */
.filter-card {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.filter-card .card-body {
    padding: 0.875rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.filter-card .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
}

.filter-card .form-control,
.filter-card .form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0.4375rem 0.625rem;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    min-height: 36px;
}

.filter-card .form-control:focus,
.filter-card .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.2);
}

.filter-card .btn {
    padding: 0.4375rem 0.875rem;
    font-size: 0.8125rem;
    min-height: 36px;
}

/* ============================================
   4. DATA TABLE
   ============================================ */
.beneficiaries-table {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.beneficiaries-table .card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.beneficiaries-table .card-title {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beneficiaries-table .table {
    margin: 0;
    background: white;
    font-size: 0.875rem;
}

.beneficiaries-table .table thead th {
    background: #f8f9fa;
    border: none;
    padding: 0.875rem 0.625rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 0.8125rem;
}

.beneficiaries-table .table tbody td {
    padding: 0.875rem 0.625rem;
    border: none;
    border-bottom: 1px solid #f8f9fa;
    vertical-align: middle;
}

.beneficiaries-table .table tbody tr:hover {
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.beneficiaries-table .table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   5. BENEFICIARY PHOTOS
   ============================================ */
.beneficiary-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.beneficiary-photo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.beneficiary-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.beneficiary-nik {
    color: #6c757d;
    font-size: 0.8125rem;
    line-height: 1.3;
}

/* ============================================
   6. BADGES
   ============================================ */
.badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-sm {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
}

.badge-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.badge-success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    color: #000;
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545 0%, #bb2d3b 100%);
    color: white;
}

.badge-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #31d2f2 100%);
    color: #000;
}

.badge-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5c636a 100%);
    color: white;
}

/* ============================================
   7. ACTION BUTTONS - ALWAYS HORIZONTAL
   ============================================ */
.btn-group,
.btn-group-sm {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.25rem;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
}

.btn-group .btn,
.btn-group-sm .btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
    border-radius: 6px !important;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-group .btn:hover,
.btn-group-sm .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-group .btn i,
.btn-group-sm .btn i {
    font-size: 0.8125rem;
    margin: 0;
}

/* ============================================
   8. BULK ACTIONS
   ============================================ */
.bulk-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bulk-actions .btn {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
}

/* ============================================
   9. CHECKBOXES
   ============================================ */
.form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    border: 2px solid #dee2e6;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ============================================
   10. PAGINATION
   ============================================ */
.pagination {
    margin: 1.5rem 0 0 0;
    justify-content: center;
    gap: 0.25rem;
}

.pagination .page-link {
    color: #0d6efd;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.pagination .page-link:hover {
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

/* ============================================
   11. EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.empty-state p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ============================================
   12. CATEGORY CARDS
   ============================================ */
.category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.category-card .card-body {
    padding: 1.25rem;
}

.category-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.category-card .card-text {
    color: #6c757d;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.category-card .card-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
}

/* ============================================
   13. MODALS
   ============================================ */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #495057;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 12px 12px;
}

/* ============================================
   14. FORMS
   ============================================ */
.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    min-height: 42px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* ============================================
   15. BUTTONS
   ============================================ */
.btn {
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    min-height: 42px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
}

/* ============================================
   16. RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Extra Small Devices (< 576px) - MOBILE */
@media (max-width: 575.98px) {
    .beneficiaries-wrapper,
    .beneficiaries-dashboard {
        padding: 0.75rem;
    }
    
    .page-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .page-header h4 {
        font-size: 1.125rem;
    }
    
    .page-header p {
        font-size: 0.8125rem;
    }
    
    .page-header .d-flex {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.75rem;
    }
    
    .page-header .btn {
        width: 100%;
        font-size: 0.875rem;
        padding: 0.625rem;
    }
    
    .page-header .btn {
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        min-height: 34px;
        max-height: 34px;
    }
    
    .filter-card .card-body {
        padding: 0.75rem;
    }
    
    .filter-card .row {
        margin: 0 -0.25rem;
    }
    
    .filter-card .row > [class*="col-"] {
        padding: 0 0.25rem;
        margin-bottom: 0.625rem;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
        min-height: 34px;
    }
    
    .filter-card .form-label {
        font-size: 0.6875rem;
        margin-bottom: 0.25rem;
    }
    
    .filter-card .btn {
        width: 100%;
        font-size: 0.8125rem;
        padding: 0.4375rem 0.625rem;
        min-height: 34px;
    }
    
    .beneficiaries-table .card-header {
        padding: 1rem;
        flex-direction: column;
    align-items: stretch;
        gap: 0.625rem;
    }
    
    .beneficiaries-table .card-title {
        font-size: 0.9375rem;
    }
    
    .beneficiaries-table .table {
        font-size: 0.8125rem;
    }
    
    .beneficiaries-table .table thead th {
        padding: 0.625rem 0.375rem;
        font-size: 0.75rem;
    }
    
    .beneficiaries-table .table tbody td {
        padding: 0.625rem 0.375rem;
        font-size: 0.8125rem;
    }
    
    .beneficiary-photo,
    .beneficiary-photo-placeholder {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .beneficiary-name {
        font-size: 0.875rem;
    }
    
    .beneficiary-nik {
        font-size: 0.75rem;
    }
    
    .badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .btn-group,
    .btn-group-sm {
        gap: 0.1875rem;
        width: auto;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .btn-group .btn,
    .btn-group-sm .btn {
        padding: 0.25rem 0.375rem;
        font-size: 0.6875rem;
        min-width: 30px;
        min-height: 30px;
        max-width: 30px;
        max-height: 30px;
        display: flex !important;
    }
    
    .btn-group .btn i,
    .btn-group-sm .btn i {
        font-size: 0.75rem;
        margin: 0;
    }
    
    .bulk-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .bulk-actions .btn {
        width: 100%;
        font-size: 0.8125rem;
    }
    
    .pagination {
        margin: 1rem 0 0 0;
        gap: 0.25rem;
    }
    
    .pagination .page-link {
        padding: 0.375rem 0.625rem;
        font-size: 0.8125rem;
    }
    
    .category-card .card-body {
        padding: 1rem;
    }
    
    .category-card .card-title {
    font-size: 1rem;
}

    .category-card .card-text {
        font-size: 0.875rem;
    }
    
    .category-card .card-footer {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .modal-header,
    .modal-footer {
        padding: 1rem 1.25rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .modal-title {
    font-size: 1rem;
    }
}

/* Small Devices (576px - 767.98px) - LARGE MOBILE */
@media (min-width: 576px) and (max-width: 767.98px) {
    .beneficiaries-wrapper,
    .beneficiaries-dashboard {
        padding: 0.875rem;
    }
    
    .page-header {
        padding: 1rem;
    }
    
    .page-header h4 {
        font-size: 1.125rem;
    }
    
    .page-header .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        min-height: 34px;
        max-height: 34px;
    }
    
    .filter-card .card-body {
        padding: 0.875rem;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
        min-height: 34px;
    }
    
    .filter-card .form-label {
        font-size: 0.6875rem;
    }
    
    .filter-card .btn {
        padding: 0.4375rem 0.75rem;
        font-size: 0.8125rem;
        min-height: 34px;
    }
    
    .beneficiaries-table .card-header {
        padding: 1.125rem;
    }
    
    .beneficiaries-table .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
    
    .beneficiaries-table .table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .btn-group .btn,
    .btn-group-sm .btn {
        padding: 0.3125rem 0.4375rem;
        font-size: 0.75rem;
        min-width: 32px;
        min-height: 32px;
        max-width: 32px;
        max-height: 32px;
    }
}

/* Medium Devices (768px - 991.98px) - TABLETS */
@media (min-width: 768px) and (max-width: 991.98px) {
    .beneficiaries-wrapper,
    .beneficiaries-dashboard {
        padding: 1.125rem;
    }
    
    .page-header {
        padding: 1.25rem;
    }
    
    .page-header h4 {
        font-size: 1.125rem;
    }
    
    .page-header .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        min-height: 34px;
        max-height: 34px;
    }
    
    .filter-card .card-body {
        padding: 0.875rem;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
        min-height: 34px;
    }
    
    .filter-card .form-label {
        font-size: 0.6875rem;
    }
    
    .filter-card .btn {
        padding: 0.4375rem 0.75rem;
        font-size: 0.8125rem;
        min-height: 34px;
    }
    
    .beneficiaries-table .card-header {
        padding: 1.25rem 1.5rem;
    }
    
    .beneficiaries-table .table thead th {
        padding: 0.875rem 0.625rem;
    }
    
    .beneficiaries-table .table tbody td {
        padding: 0.875rem 0.625rem;
    }
    
    .btn-group .btn,
    .btn-group-sm .btn {
        padding: 0.3125rem 0.4375rem;
        font-size: 0.75rem;
        min-width: 32px;
        min-height: 32px;
        max-width: 32px;
        max-height: 32px;
    }
}

/* Large Devices (≥ 992px) - DESKTOP */
@media (min-width: 992px) {
    .beneficiaries-wrapper,
    .beneficiaries-dashboard {
    padding: 1.5rem;
}

    .page-header {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header h4 {
        font-size: 1.25rem;
    }
    
    .page-header p {
        font-size: 0.875rem;
    }
    
    .page-header .btn {
        padding: 0.3125rem 0.625rem;  /* 5px 10px - LEBIH KECIL */
        font-size: 0.6875rem;          /* 11px - SANGAT KECIL */
        min-height: 30px;              /* 30px - COMPACT */
        max-height: 30px;
    font-weight: 500;
}

    .page-header .btn i {
        font-size: 0.75rem;            /* Icon kecil */
        margin-right: 0.25rem;
    }
    
    .filter-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-card .card-body {
        padding: 0.875rem 1rem;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.625rem;
        min-height: 36px;
    }
    
    .filter-card .form-label {
        font-size: 0.75rem;
    }
    
    .filter-card .btn {
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 36px;
    }
    
    .beneficiaries-table {
        margin-bottom: 2rem;
    }
    
    .beneficiaries-table .card-header {
        padding: 1.5rem 2rem;
    }
    
    .beneficiaries-table .card-title {
        font-size: 1.125rem;
    }
    
    .beneficiaries-table .table {
        font-size: 0.9375rem;
    }
    
    .beneficiaries-table .table thead th {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .beneficiaries-table .table tbody td {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .beneficiary-photo,
    .beneficiary-photo-placeholder {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .beneficiary-name {
        font-size: 1rem;
    }
    
    .beneficiary-nik {
        font-size: 0.875rem;
    }
    
    .badge {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .btn-group .btn,
    .btn-group-sm .btn {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
        min-width: 34px;
        min-height: 34px;
        max-width: 34px;
        max-height: 34px;
    }
    
    .btn-group .btn i,
    .btn-group-sm .btn i {
        font-size: 0.8125rem;
    }
    
    .category-card .card-body {
        padding: 1.5rem;
    }
    
    .category-card .card-title {
        font-size: 1.25rem;
    }
    
    .category-card .card-text {
        font-size: 1rem;
    }
    
    .pagination {
        margin: 2rem 0 0 0;
    }
    
    .pagination .page-link {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
    }
}

/* Extra Large Devices (≥ 1200px) - LARGE DESKTOP */
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1400px;
    }
    
    .page-header h4 {
        font-size: 1.3125rem;  /* Sedikit lebih kecil */
    }
    
    .page-header .btn {
        padding: 0.3125rem 0.625rem;  /* 5px 10px - KONSISTEN KECIL */
        font-size: 0.6875rem;          /* 11px */
        min-height: 30px;
        max-height: 30px;
    }
    
    .beneficiaries-table .card-title {
        font-size: 1.125rem;  /* Sedikit lebih kecil */
    }
    
    .beneficiaries-table .table {
        font-size: 0.9375rem;  /* Sedikit lebih kecil */
    }
}

/* ============================================
   17. MOBILE RESPONSIVE - HEADER BUTTONS
   ============================================ */
@media (max-width: 575.98px) {
    .page-header .card-body {
        padding: 0.625rem !important;
    }
    
    .page-header .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 38px;
        width: 100%;
    }
    
    .page-header .d-flex.flex-column {
        gap: 0.5rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .page-header .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* Desktop - Extra Small Buttons */
@media (min-width: 992px) {
    .page-header .btn-sm {
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 34px;
    }
}

@media (min-width: 1200px) {
    .page-header .btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        min-height: 32px;
    }
    
    .page-header .btn-sm i {
        font-size: 0.6875rem;
    }
}

/* ============================================
   18. PRINT STYLES
   ============================================ */
@media print {
    .beneficiaries-wrapper,
    .beneficiaries-dashboard {
        background: white;
        padding: 0;
    }
    
    .page-header,
    .filter-card,
    .btn,
    .bulk-actions,
    .pagination {
        display: none !important;
    }
    
    .beneficiaries-table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .beneficiaries-table .card-header {
        background: #000 !important;
        color: white !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    .beneficiaries-table .table {
        font-size: 10pt;
    }
}
