/* --- HALAMAN CATEGORY RANKING --- */
.category-ranking-page {
    position: relative;
    z-index: 1;
    background-color: #ffffff !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 20px;
    min-height: 100vh;
    width: 100%;
}

/* PERBAIKAN HEADER (FLEX SEJARAH) */
.cr-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
    background: #fff;
}
.cr-header-top .back-btn {
    background: none; border: none; font-size: 18px; cursor: pointer; color: #000; padding: 0;
}
.cr-center-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cr-time-selector {
    display: flex; align-items: center; gap: 6px;
    border: 1px solid #f5a623; border-radius: 20px;
    padding: 6px 12px; font-size: 13px; font-weight: 500; cursor: pointer; color: #000;
}
.cr-time-selector i { font-size: 11px; color: #f5a623; }
.cr-calendar-btn {
    background: none; border: none; font-size: 18px; cursor: pointer; color: #000; padding: 0;
}

/* PERBAIKAN TABS */
.cr-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 16px 16px 16px;
}
.cr-tab-btn {
    background: none; border: none; padding: 8px 0; 
    font-size: 15px; font-weight: 600; color: #999; cursor: pointer; position: relative;
}
.cr-tab-btn.active { color: #f5a623; }
.cr-tab-btn.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: #f5a623; border-radius: 2px;
}

.cr-title {
    margin: 0 16px 16px 16px;
    font-size: 15px; font-weight: 700; color: #000;
}

/* Pie Chart */
.cr-chart-container { display: flex; justify-content: center; margin-bottom: 16px; }

/* Total Row */
.cr-total-row {
    display: flex; justify-content: space-between; padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0; margin: 0 16px 16px 16px;
    font-size: 15px; color: #000;
}

/* PERBAIKAN LIST ITEM (Background Abu-Abu) */
.cr-list { padding: 0 16px; }
.cr-item { 
    background: #f9f9f9; /* BACKGROUND ABU-ABU SEPERTI DESAIN */
    border-radius: 12px; 
    padding: 12px 14px; 
    margin-bottom: 12px; 
}
.cr-header { display: flex; align-items: center; margin-bottom: 8px; }
.cr-icon-box {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 14px; margin-right: 12px; flex-shrink: 0;
}
.cr-info { display: flex; flex: 1; justify-content: space-between; align-items: center; }
.cr-name { font-size: 14px; color: #333; font-weight: 500; }
.cr-amount { font-size: 13px; font-weight: 500; }

.cr-bar-bg {
    width: 100%; height: 6px; background: #e0e0e0; border-radius: 4px; overflow: hidden;
}
.cr-bar-fill { height: 100%; border-radius: 4px; }

/* Bottom Sheet List Month */
.month-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid #f0f0f0;
}
.month-row span:first-child { font-size: 15px; color: #333; }
.month-values { font-size: 14px; font-weight: 500; }
.month-values .text-green { color: #4cd964; }
.month-values .text-red { color: #ff3b30; }

.list-item.active-item { font-weight: 600; color: #000; }
