@font-face {
    font-family: 'TransaksiFont';
    src: url('transaksi.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}

.mobile-container {
    width: 100%;
    max-width: 414px;
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow-x: hidden;
    overflow-y: auto;
}

/* View Management (SPA Logic) */
.view {
    display: none;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    animation: fadeIn 0.3s ease;
    position: relative;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Header General */
.header {
    display: flex;
    align-items: center;
    padding: 48px 16px 16px 16px; 
    background-color: #ffffff;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.header h1 {
    font-family: 'TransaksiFont', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Action Card Section (Main Page) */
.action-section {
    padding: 16px;
    background-color: #fcfcfc;
}

.action-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: pointer;
}

.icon-box {
    width: 52px;
    height: 52px;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-item span {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

/* Tabs Section */
.tabs-section {
    padding: 16px;
    background-color: #ffffff;
}

.tabs-container {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 24px;
    padding: 4px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    background-color: #d6f35b;
    font-weight: 600;
    color: #111;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab.inactive {
    color: #555;
    font-weight: 400;
}

/* Empty State Content */
.content-section {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
}

.illustration-container {
    margin-bottom: 24px;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-illustration {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.content-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.content-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.custom-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #25a19b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========================================== */
/* FORM REKENING STYLES                       */
/* ========================================== */
.form-section {
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-box {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px 14px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s;
}

.input-box.focused {
    border-color: #25a19b;
}

.input-box label {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.input-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-value-row span {
    font-size: 14px;
    color: #111;
}

.rekening-input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #111;
    width: 100%;
    background: transparent;
    padding: 2px 0;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #25a19b;
    border-radius: 8px;
    padding: 16px;
    background-color: #ffffff;
}

.info-box p {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    margin-top: 1px;
}

/* ========================================== */
/* BOTTOM FIXED BUTTON & LOADING              */
/* ========================================== */
.bottom-fixed-action {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    padding: 16px;
    background-color: #ffffff;
    z-index: 50;
}

.btn-lanjut, .btn-lanjut-detail {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    background-color: #f0f0f0;
    color: #a0a0a0;
    transition: all 0.2s;
}

.btn-lanjut.btn-active, .btn-lanjut-detail.btn-active {
    background-color: #2b817b;
    color: #ffffff;
    cursor: pointer;
}

.loading-overlay {
    position: fixed; /* Ubah ke fixed agar menutupi seluruh viewport walau discroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-overlay.show {
    display: flex;
}

.custom-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 8px solid #a37df6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite; 
}

.loader-pill {
    width: 50px;
    height: 12px;
    background-color: #3bccc0;
    border-radius: 6px;
    margin-top: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================== */
/* VIEW 3: PILIH BANK STYLES                  */
/* ========================================== */
.search-section {
    padding: 8px 16px 16px 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #111;
    border-radius: 8px;
    padding: 10px 14px;
    gap: 10px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #111;
}

.search-box input::placeholder {
    color: #888;
}

.search-hint {
    font-size: 11px;
    color: #555;
    margin-top: 8px;
    padding-left: 2px;
}

.bank-list-container {
    padding: 16px 0;
    background-color: #ffffff;
    padding-bottom: 40px; 
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    cursor: pointer;
}

.bank-item:active {
    background-color: #f5f5f5;
}

.bank-icon-circle {
    width: 42px;
    height: 42px;
    background-color: #eaf5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-icon-svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #25a19b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bank-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* ========================================== */
/* VIEW 4: DETAIL TRANSFER STYLES             */
/* ========================================== */
.detail-content {
    padding: 0 16px 120px 16px;
    background-color: #ffffff;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #eaf5f5;
    color: #2b817b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.profile-info h2 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 12px;
    color: #888;
}

.nominal-section {
    margin-bottom: 24px;
}

.nominal-section label {
    font-size: 13px;
    color: #333;
}

.nominal-input-wrapper {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 8px;
}

.currency {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-right: 8px;
}

.huge-input {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.section-title-row label {
    font-size: 13px;
    color: #333;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 16px;
}

.sumber-dana-card {
    padding: 16px;
}

.sd-type {
    font-size: 13px;
    color: #111;
    margin-bottom: 4px;
}

.sd-rek {
    font-size: 13px;
    color: #111;
    margin-bottom: 8px;
}

.sd-balance {
    font-size: 19px;
    font-weight: 700;
    color: #111;
}

.dropdown-card {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.dropdown-card label {
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
}

.dropdown-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-value span {
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.catatan-wrapper {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 12px 16px;
}

.catatan-wrapper textarea {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    resize: none;
    height: 24px;
    font-size: 14px;
    color: #111;
}

.catatan-wrapper textarea::placeholder {
    color: #aaa;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.dual-action {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.btn-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid #dcdcdc;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ========================================== */
/* VIEW 5: KONFIRMASI TRANSFER STYLES         */
/* ========================================== */
.konfirmasi-content {
    padding: 0 16px 120px 16px;
    background-color: #ffffff;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.konfirmasi-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    background-color: #ffffff;
}

.kf-name {
    font-size: 14px;
    color: #111;
    margin-bottom: 6px;
}

.kf-detail {
    font-size: 13px;
    color: #555;
}

.divider {
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.detail-label {
    font-size: 13px;
    color: #555;
}

.detail-value {
    font-size: 13px;
    color: #111;
    text-align: right;
}

.tutup-btn-wrapper {
    text-align: center;
    margin-top: 24px;
}

.tutup-btn {
    font-size: 12px;
    font-weight: 600;
    color: #d97736;
    text-decoration: underline;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.bottom-konfirmasi {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    padding: 16px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    z-index: 50;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.total-label {
    font-size: 14px;
    color: #333;
}

.total-amount {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.btn-transfer-sekarang {
    width: 100%;
    padding: 16px;
    background-color: #6bdec8;
    color: #111;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-transfer-sekarang:active {
    opacity: 0.8;
}

/* ========================================== */
/* VIEW 6: INPUT PIN STYLES                   */
/* ========================================== */
.pin-container {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.pin-title {
    font-family: 'TransaksiFont', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    text-align: center;
}

.pin-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.pin-indicators {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.pin-dot {
    width: 16px;
    height: 16px;
    border: 1.5px solid #111;
    border-radius: 50%;
    transition: background-color 0.1s ease;
}

/* Class saat pin terisi */
.pin-dot.filled {
    background-color: #111;
}

.keypad-wrapper {
    width: 100%;
    max-width: 320px;
    margin-top: auto; /* Mendorong keypad ke bawah */
    margin-bottom: 20px;
}

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
    justify-items: center;
    align-items: center;
}

.keypad-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #f2f2f2;
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.1s;
}

.keypad-btn:active {
    background-color: #e0e0e0;
}

.keypad-text-btn {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #d97736;
    cursor: pointer;
}

.icon-btn {
    background-color: #f2f2f2;
}
/* ========================================== */
/* VIEW 7 & 8: STATUS GAGAL & BUKTI TRANSFER  */
/* ========================================== */
.status-content {
    padding: 0 16px 100px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.status-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-top: 16px;
}

.status-amount {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 4px 0;
    letter-spacing: -1px;
}

.status-date, .status-ref {
    font-size: 13px;
    color: #555;
}

.status-msg {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    margin: 24px 0;
    padding: 0 8px;
}

.action-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    width: 100%;
}

.action-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-btn-orange {
    width: 56px;
    height: 56px;
    background-color: #ff8e4f;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.action-btn-wrapper span {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.status-card-section {
    width: 100%;
    text-align: left;
}

.btn-kembali-beranda {
    width: 100%;
    padding: 16px;
    background-color: #6bdec8;
    color: #111;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Watermark BNI berulang */
.watermark-bg {
    background-image: repeating-linear-gradient(45deg, rgba(230,230,230,0.4) 0, rgba(230,230,230,0.4) 1px, transparent 1px, transparent 40px);
    background-color: #ffffff;
}

.close-btn-top {
    position: absolute;
    top: 48px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.bukti-content {
    padding: 80px 24px 200px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wondr-logo {
    width: 120px;
    margin-bottom: 16px;
}

/* Mengatur kotak area detail agar siap menampung watermark */
.bukti-details-box {
    width: 100%;
    text-align: left;
    margin-top: 24px;
    position: relative; /* Penting untuk watermark */
    z-index: 1; /* Memastikan teks tetap di atas */
    padding: 16px 0; /* Memberi sedikit ruang agar watermark rapi */
}

/* Kita ubah kode CSS sebelumnya untuk menampung file pola baru */
.bukti-details-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Kembalikan ke 0, tidak perlu ditarik */
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.05; /* Sedikit lebih tebal karena logonya menyebar (sesuaikan selera) */
    pointer-events: none;

    /* Terapkan pola gambar baru */
    background-image: url('bni_pattern.png');
    background-repeat: repeat; /* Membuat logo berbaris/berulang */

    /* KONTROL PENTING: background-size mengontrol ukuran logo asli
       dan background-position memastikan posisinya rapi */
    background-size: 80px auto; /* Ukuran per logo (jangan ukuran file-nya) */
    background-position: center; /* keep pattern centered */
}

.bt-label {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.bt-value {
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.bt-subvalue {
    font-size: 13px;
    color: #555;
}

.bt-divider {
    border: 0;
    border-bottom: 1px solid #eee;
    margin: 12px 0;
}

.bt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.bt-row span:first-child { color: #555; }
.bt-row span:last-child { color: #111; text-align: right; }

.bottom-bukti {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    padding: 16px 24px 32px 24px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    z-index: 50;
}

.bt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bt-total-amount {
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.bukti-actions {
    display: flex;
    justify-content: center;
    gap: 80px;
}
@font-face {
    font-family: 'BNI001';
    src: url('bni001.ttf') format('truetype');
}

@font-face {
    font-family: 'BNI002';
    src: url('bni002.ttf') format('truetype');
}

@font-face {
    font-family: 'BNI003';
    src: url('bni003.ttf') format('truetype');
}

/* --- LINGKARAN ORANYE (BNI001) --- */
.action-item span {
    font-family: 'BNI001', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

.tab {
    font-family: 'BNI001', sans-serif;
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.content-title {
    font-family: 'BNI001', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

/* --- LINGKARAN BIRU (BNI002) --- */
.input-box label {
    font-family: 'BNI002', sans-serif;
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.input-value-row span {
    font-family: 'BNI002', sans-serif;
    font-size: 14px;
    color: #111;
}

.rekening-input {
    font-family: 'BNI002', sans-serif;
    border: none;
    outline: none;
    font-size: 14px;
    color: #111;
    width: 100%;
    background: transparent;
    padding: 2px 0;
}

.info-box p {
    font-family: 'BNI002', sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    margin-top: 1px;
}

/* --- LINGKARAN HIJAU (BNI003) --- */
.content-subtitle {
    font-family: 'BNI003', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}
@font-face {
    font-family: 'BNI004';
    src: url('bni004.ttf') format('truetype');
}

/* --- DAFTAR NAMA BANK (BNI004) --- */
.bank-name {
    font-family: 'BNI004', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* --- KOTAK PENCARIAN BANK (OPSIONAL: AGAR SERAGAM) --- */
.search-box input {
    font-family: 'BNI004', sans-serif;
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #111;
}
/* --- TAMBAHKAN DI BARIS ATAS (KUMPULKAN DENGAN FONT LAIN) --- */
@font-face {
    font-family: 'BNI006';
    src: url('bni006.ttf') format('truetype');
}

@font-face {
    font-family: 'BNI007';
    src: url('bni007.ttf') format('truetype');
}

/* --- TIMPA PENGATURAN GLOBAL BINTANG (*) YANG LAMA DENGAN INI --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'BNI007', sans-serif; /* Semua font yang tidak ditandai otomatis pakai BNI007 */
    -webkit-tap-highlight-color: transparent;
}

/* --- TAMBAHKAN KODE INI UNTUK LINGKARAN ORANYE (BNI006) --- */
.profile-info p,
.nominal-section label,
.section-title-row label,
.sd-type,
.sd-rek,
.dropdown-card label,
.catatan-wrapper textarea,
.catatan-wrapper textarea::placeholder {
    font-family: 'BNI006', sans-serif;
}
@font-face {
    font-family: 'BNI008';
    src: url('bni008.ttf') format('truetype');
}

/* --- LINGKARAN ORANYE HALAMAN KONFIRMASI (BNI008) --- */
.kf-name,
.kf-detail,
.detail-label,
.detail-value {
    font-family: 'BNI008', sans-serif;
}
/* --- TAMBAHKAN DI BARIS PALING ATAS (KUMPULKAN DENGAN FONT LAIN) --- */
@font-face {
    font-family: 'BNI009';
    src: url('bni009.ttf') format('truetype');
}

@font-face {
    font-family: 'BNI010';
    src: url('bni010.ttf') format('truetype');
}

/* --- TAMBAHKAN ATAU TIMPA CLASS INI DI FILE CSS KAMU --- */

/* NOMINAL BESAR DI ATAS (BNI010) */
.status-amount {
    font-family: 'BNI010', sans-serif;
}

/* LINGKARAN HIJAU: Tanggal, Ref ID, dan Pesan (BNI009) */
.status-date, 
.status-ref, 
.status-msg {
    font-family: 'BNI009', sans-serif;
}
/* --- PERBAIKAN ANGKA REF ID (BNI009) --- */
/* Menambahkan target spesifik ke span agar angka ikut berubah */
.status-date, 
.status-ref, 
.status-ref span, 
.status-msg {
    font-family: 'BNI009', sans-serif;
}

/* --- LINGKARAN ORANYE BUKTI TRANSFER (BNI001) --- */
/* Mengubah nama & detail penerima, nama & detail sumber dana, 
   serta seluruh baris di detail transfer */
.bt-value,
.bt-subvalue,
.bt-row span {
    font-family: 'BNI011', sans-serif;
}
@font-face {
    font-family: 'BNI011';
    src: url('bni011.ttf') format('truetype');
}
/* --- LINGKARAN ORANYE BUKTI TRANSFER (BNI011) --- */
.bt-value,
.bt-subvalue,
.bt-row span {
    font-family: 'BNI011', sans-serif;
}
/* ========================================== */
/* POPUP PENGATURAN SUMBER DANA               */
/* ========================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show {
    display: flex;
}
.modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 360px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease;
}
.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 16px;
}
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.btn-outline {
    flex: 1; padding: 12px; border: 1px solid #25a19b; background: transparent; color: #25a19b; border-radius: 24px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.btn-outline:active { background: #eaf5f5; }
.btn-solid {
    flex: 1; padding: 12px; border: none; background: #2b817b; color: #fff; border-radius: 24px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.btn-solid:active { opacity: 0.8; }
