/* Financial Statement */
.financial-statement .balance {
    text-align: center;
    font-size: 24px; font-weight: 700; color: #4cd964;
    padding: 10px 0;
}

/* --- TOMBOL FILTER THIS MONTH DI HOME (DIPERBAIKI) --- */
.filter-select {
    text-align: center;
    margin-bottom: 20px;
}

/* Ganti select asli dengan div tombol yang memiliki border kuning */
.home-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #f5a623; /* Kembalikan border kuning */
    border-radius: 20px;
    background: #ffffff;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}
.home-filter-btn i {
    font-size: 12px;
    color: #f5a623;
}

/* Expense & Income Chart */
.chart-container { display: flex; align-items: flex-end; gap: 12px; padding-bottom: 4px; height: 90px; }
.chart-labels { display: flex; flex-direction: column; justify-content: space-between; height: 100%; font-size: 10px; color: #8e8e93; }
.chart-bars { display: flex; align-items: flex-end; gap: 16px; height: 100%; margin-right: 16px; }
.chart-bar { width: 24px; border-radius: 4px 4px 0 0; }
.bar-income { height: 6px; background-color: #4cd964; }
.bar-expense { height: 80px; background-color: #ff3b30; }

.chart-data { flex: 1; }
.chart-data .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; border-bottom: 1px solid #f2f2f2; }
.chart-data .row:last-child { border-bottom: none; }
.chart-data .row span:first-child { color: #333; }

/* Monthly Budget */
.budget-container { display: flex; align-items: center; gap: 20px; }
.donut-chart {
    width: 90px; height: 90px; border-radius: 50%;
    background: conic-gradient(#4cd964 0% 7.2%, #e5e5ea 7.2% 100%);
    display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0;
}
.donut-inner {
    width: 70px; height: 70px; background: #fff; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 10px; color: #8e8e93;
}
.donut-inner strong { color: #4cd964; font-size: 12px; }
.budget-data { flex: 1; font-size: 14px; }
.budget-data .row { padding: 4px 0; }
.budget-data .row span:first-child { color: #8e8e93; }

/* Recent Transactions */
.transaction-item { background: #f9f9f9; border-radius: 10px; padding: 12px; margin-bottom: 12px; display: flex; align-items: center; }
.transaction-item:last-child { margin-bottom: 0; }
.trans-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 14px; color: #fff; font-size: 18px; flex-shrink: 0; }
.bg-orange { background: #ffcd5c; }
.bg-gray { background: #a4aab3; }
.bg-pink { background: #ff7a9e; }
.trans-details { flex: 1; }
.trans-details h4 { font-size: 14px; color: #333; font-weight: 600; }
.trans-details p { font-size: 12px; color: #8e8e93; margin-top: 2px; }
.trans-amount { font-size: 14px; color: #ff3b30; }


/* ========================================================= */
/* --- BOTTOM SHEET UNTUK HOME (THIS MONTH) --- */
/* ========================================================= */
.home-time-sheet .bottom-sheet-content {
    background: #fff; 
    width: 100%; 
    max-width: 480px;
    border-radius: 20px 20px 0 0;
    padding: 20px; 
    padding-bottom: 40px;
    transform: translateY(100%); 
    transition: transform 0.3s ease;
}
.home-time-sheet.open .bottom-sheet-content {
    transform: translateY(0);
}
.home-time-sheet h3 { 
    font-size: 16px; font-weight: 600; margin-bottom: 16px; 
}
.home-time-sheet .list-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid #f0f0f0; cursor: pointer;
}
.home-time-sheet .list-item:last-child { border-bottom: none; }
.home-time-sheet .list-item.active-item { font-weight: 600; color: #000; }
.home-time-sheet .list-item.active-item i { display: block !important; }
.home-time-sheet .list-item i { display: none; color: #f5a623; font-size: 16px; }
