/* --- HALAMAN FINANCIAL STATEMENT --- */
.financial-statement-page {
    position: relative;
    z-index: 1;
    background-color: #ffffff !important; /* Putih bersih seperti halaman Transaction */
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 20px;
    min-height: 100vh;
    width: 100%;
}

/* Header */
.fs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f8f8f8;
}
.fs-header h2 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    flex: 1;
    text-align: center;
}
.back-btn {
    background: none; border: none; font-size: 18px; cursor: pointer; color: #000; padding: 0;
}

/* Card Total Saldo */
.fs-total-card {
    margin: 0 16px 24px 16px;
    border: 1px solid #f5a623;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    background: #fff;
}
.fs-total-text {
    font-size: 20px;
}

/* Chart Container */
.fs-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

/* Legenda */
.fs-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 16px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.legend-text {
    font-size: 14px;
    color: #333;
}
