@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff !important;
}

/* --- CUSTOM DROPDOWN (PENGGANTI SELECT) --- */
.custom-select-btn {
    width: 100%;
    text-align: left;
    background-color: transparent; /* Biar ngikut warna container (merah/hijau) */
    border: none;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-select-btn:focus {
    outline: none;
    box-shadow: none;
}

.account-dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 8px;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.account-option {
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f8f9fa;
}
.account-option:last-child {
    border-bottom: none;
}
.account-option:hover {
    background-color: #f4f7fe;
}
.account-option.selected {
    background-color: #eef2ff;
    border: 1px solid #c7d2fe;
}
/* --- SIDEBAR DESKTOP (PREMIUM LOOK) --- */
.sidebar-col {
    background: #fff !important;
    /* border-right: 1px solid rgba(0,0,0,0.05); */
    /* box-shadow: 4px 0 20px rgba(0,0,0,0.02); */
    min-height: 100vh;
    z-index: 1000;
}

.sidebar-brand {
    font-weight: 800;
    color: #1e3c72; /* Warna Brand */
    letter-spacing: -0.5px;
}

/* Menu Item Desktop */
.sidebar .nav-link {
    color: #8898aa;
    font-weight: 500;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    color: #1e3c72;
    background: #f6f9fc;
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.sidebar .nav-icon {
    width: 24px;
    margin-right: 12px;
    text-align: center;
}


/* --- MODERN AUTH PAGE (Login & Register) --- */

/* --- TWEAK GLOBAL FORM (Biar kerasa premium) --- */
.form-control {
    border: 2px solid #f0f2f5;
    background-color: #fefefe;
    border-radius: 12px; /* Radius lebih tumpul */
    padding-top: 1.625rem; /* Penyesuaian buat floating label */
    padding-bottom: 0.625rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: #4e73df; /* Warna utama */
    box-shadow: 0 0 0 4px rgba(78, 115, 223, 0.1); /* Glow halus, bukan tajam */
}

/* Tombol Utama - Gradient & Shadow */
.btn-primary, .btn-success {
    border-radius: 12px;
    border: none;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3); /* Shadow "ngangkat" */
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.btn-primary:active, .btn-success:active {
    transform: scale(0.98); /* Efek "kepencet" */
}

.auth-wrapper {
    height: 100vh; /* GANTI min-height jadi height */
    width: 100%;
    background-color: #fff;
    overflow: hidden; /* Supaya tidak ada scrollbar ganda */
}

/* Bagian Kiri (Branding) */
.auth-brand-side {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Deep Blue Gradient */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Hiasan Lingkaran Transparan di Background */
.auth-brand-side::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}
.auth-brand-side::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

/* Bagian Kanan (Form) */
.auth-form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background-color: #fff;
}

/* Form Container max-width */
.auth-form-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Animasi Fade In saat halaman dibuka */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body { min-height: 100vh; background-color: #f8f9fa; }
.sidebar { min-height: 100vh; background-color: #2c3e50; }
.sidebar a { color: #adb5bd; text-decoration: none; padding: 10px 15px; display: block; border-radius: 5px; margin-bottom: 5px; }
.sidebar a:hover, .sidebar a.active { background-color: rgba(255,255,255,0.1); color: #fff; }
.nav-icon { width: 25px; text-align: center; margin-right: 10px; }
.main-content { padding: 0px; }

/* Transaction List Item */
.trx-item {
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.trx-item:last-child {
    border-bottom: none;
}
.trx-item:hover {
    background-color: #f8f9fa;
}

/* Kotak Ikon Bulat */
.trx-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0; /* Supaya ikon gak gepeng kalau layar sempit */
}

/* Supaya teks panjang jadi titik-titik (...) di HP */
.text-truncate-mobile {
    max-width: 160px; /* Batas lebar teks di HP */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- DASHBOARD STYLING (TANPA UBAH LOGIC) --- */

/* 1. Kartu Saldo (Gradient) */
.balance-card-premium {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
}
.balance-card-premium::after {
    content: '';
    position: absolute;
    right: -20px; bottom: -20px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* 2. Tombol Shortcut (Pemasukan/Pengeluaran) */
.shortcut-card {
    border: 2px dashed #e3e6f0;
    border-radius: 20px;
    transition: all 0.2s;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.shortcut-card:hover {
    border-color: #4e73df;
    background: #f8f9fc;
    transform: translateY(-3px);
}

/* 3. List Transaksi Mobile (Card Style) */
.trx-mobile-card {
    background: #fff;
    border-radius: 16px; /* Radius agak gede biar modern */
    padding: 16px;       /* Padding lega */
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Shadow halus */
    border: 1px solid #f0f2f5;
}
.trx-mobile-card .icon-wrapper {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;      /* KUNCI: Jangan biarkan mengecil */
    border-radius: 50%;   /* Bulat sempurna */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;       /* KUNCI: Biar gak gepeng didorong teks */
}
.trx-mobile-card:active {
    transform: scale(0.98);
}

.trx-mobile-card h6 {
    font-size: 0.9rem !important; /* Font judul agak kecil */
    margin-bottom: 2px !important;
}
.trx-mobile-card small {
    font-size: 0.75rem !important; /* Font tanggal/akun lebih kecil */
}

/* 4. Perkecil Area Tombol Aksi (Bawah) */
.trx-mobile-card .action-area {
    margin-top: 6px !important;    /* Jarak ke atas dirapatkan */
    padding-top: 6px !important;   /* Padding garis pemisah dikurangi */
}

.action-btn-square {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #f8f9fa; /* Abu sangat muda */
    color: #6c757d;
    transition: all 0.2s;
}
.action-btn-square:hover {
    background-color: #e9ecef;
    color: #0d6efd;
}
.action-btn-square.delete:hover {
    background-color: #ffe5e5;
    color: #dc3545;
}

/* Tombol Edit/Hapus jadi mungil */
.action-btn-sm {
    width: 26px;      /* Kotak tombol lebih kecil */
    height: 26px;
    font-size: 10px;  /* Ikon tong sampah/pensil lebih kecil */
    border-radius: 6px;
}

/* Tombol Aksi Kecil (Edit/Hapus) */
.action-btn-sm {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8f9fa;
    color: #8898aa;
    transition: 0.2s;
}
.action-btn-sm:hover {
    background: #eaecf4;
    color: #4e73df;
}
.action-btn-sm.delete:hover {
    background: #ffe3e6;
    color: #e74a3b;
}
/* --- FORM TRANSAKSI PREMIUM --- */

/* 1. Input Nominal Besar (Big Amount) */
.amount-input-group {
    background-color: #fff;
    border: 2px solid #e3e6f0;
    border-radius: 20px;
    padding: 10px 15px;
    transition: all 0.3s;
}
.amount-input-group:focus-within {
    border-color: #4e73df;
    box-shadow: 0 0 0 4px rgba(78, 115, 223, 0.1);
}
.amount-input-group input {
    border: none;
    background: transparent;
    font-size: 2rem; /* Font Gede */
    font-weight: 800;
    color: #1e3c72;
    text-align: center;
    box-shadow: none !important; /* Hapus glow default bootstrap */
}
.amount-input-group span {
    font-weight: 600;
    color: #adb5bd;
    font-size: 1.2rem;
}

/* 2. Radio Button Group (Pemasukan/Pengeluaran) */
.type-selector .btn-outline-success,
.type-selector .btn-outline-danger {
    border: 2px solid #e3e6f0;
    color: #adb5bd;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    font-weight: 700;
    transition: all 0.2s;
}

/* State Aktif (Checked) */
.type-selector .btn-check:checked + .btn-outline-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
    box-shadow: 0 4px 10px rgba(15, 81, 50, 0.1);
}
.type-selector .btn-check:checked + .btn-outline-danger {
    background-color: #f8d7da;
    color: #842029;
    border-color: #f5c2c7;
    box-shadow: 0 4px 10px rgba(132, 32, 41, 0.1);
}

/* 3. Card Form */
.form-card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


/* Responsive: Di HP, bagian Brand disembunyikan atau dikecilkan */
@media (max-width: 768px) {
    .main-content { padding-top: 100px; }

    .sidebar-col { display: none; }
    .auth-brand-side {
        display: flex !important;
        flex-direction: column !important; /* Susunan atas-bawah */
        
        /* KUNCI PERBAIKANNYA DI SINI: */
        justify-content: flex-start !important; /* Vertikal: Mulai dari atas */
        align-items: center !important;         /* Horizontal: Rata TENGAH */
        text-align: center !important;          /* Paksa teks rata tengah */
        
        padding-top: 40px !important; /* Kasih jarak dari atas HP biar gak mepet */
        min-height: 35vh; 
        border-radius: 0 0 40px 40px;
        z-index: 1;
    }
    .auth-brand-side > div {
        width: 100%;
    }
    .auth-brand-side i { font-size: 3rem !important; margin-bottom: 10px !important; }
    .auth-brand-side h1 { font-size: 1.8rem !important; }
    .auth-brand-side p { display: none; } /* Hide deskripsi panjang di HP biar clean */
    .auth-form-side {
        padding: 0 20px !important;
        margin-top: -60px; /* TARIK KE ATAS BIAR NUMPUK HEADER */
        background: transparent !important; /* Transparan, karena background body udah ada */
        z-index: 10;
        position: relative;
    }
    .auth-form-container {
        background: #fff;
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Shadow tebal */
    }
    .auth-wrapper {
        height: auto; /* Balik ke auto kalau di HP biar bisa discroll */
        min-height: 100vh !important;
        overflow-y: auto !important;
    }

    .text-truncate-mobile {
        max-width: 300px !important; /* Di PC lebih lebar */
    }

    html {
        font-size: 16px !important; /* Default browser biasanya 16px. Kita turunkan jadi 14px. */
    }
    body {
        background-color: #f4f6f9; 
    }

    /* 2. Penyesuaian Heading (Judul) */
    /* Supaya judul tidak terlalu "teriak" di layar kecil */
    h1 { font-size: 21px !important; }  /* Sekitar 21px */
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 16px !important; } /* Sekitar 16px */
    h4, h5, h6 { font-size: 14px !important; }

    /* 3. Padatkan Teks di Card & Tabel */
    .card-body, .list-group-item, .table {
        font-size: 0.95rem !important; /* Sedikit lebih kecil lagi biar muat banyak */
    }

    /* 4. Kecilkan Text Muted (Keterangan kecil) */
    .text-muted, .small {
        font-size: 0.85rem !important;
    }

    /* 5. Kurangi Padding/Jarak (Biar gak boros tempat) */
    .card-body {
        padding: 15px !important; /* Default bootstrap biasanya 1.5rem (24px) */
    }
    
    /* Override padding besar */
    .p-4 {
        padding: 1.25rem !important; 
    }
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    .mb-5 {
        margin-bottom: 1rem !important;
    }
}

.bottom-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Efek Kaca */
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    padding-bottom: env(safe-area-inset-bottom); /* Support iPhone X+ */
    height: 55px;
    z-index: 1040;
}

.bottom-nav-item {
    color: #a0aec0;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: 0.2s;
}

.bottom-nav-item.active {
    color: #1e3c72;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

/* TOMBOL TENGAH (FLOATING FAB) */
.nav-fab-container {
    position: relative;
    top: -25px; /* Naik ke atas */
}

.nav-fab {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.4);
    border: 4px solid #f4f7fe; /* Border warna background body biar seolah bolong */
    transition: transform 0.2s;
}

.nav-fab:active {
    transform: scale(0.9);
}

/* Penyesuaian Konten Mobile biar gak ketutup navbar bawah */
@media (max-width: 768px) {
    .main-content {
        padding-bottom: 100px !important; /* Kasih ruang buat bottom nav */
    }
    .sidebar-col {
        display: none; /* Hide sidebar desktop di HP */
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 90px !important; /* Jarak aman dari atas */
        padding-bottom: 100px !important; /* Jarak aman dari bawah */
    }
}

/* Dropdown Profile Premium */
.profile-dropdown .dropdown-toggle::after {
    display: none; /* Hilangkan panah default */
}
.profile-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
}
.profile-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
}
.profile-dropdown .dropdown-item:hover {
    background-color: #f4f7fe;
    color: #1e3c72;
}

/* --- TWEAK KHUSUS MOBILE FORM (BIAR GAK PENUH) --- */
@media (max-width: 768px) {
    
    /* 1. Judul Halaman Lebih Kecil */
    h4.fw-bold { 
        font-size: 1.1rem !important; 
        margin-bottom: 0 !important;
    }
    .btn-light.rounded-circle {
        width: 35px; height: 35px; /* Tombol back dikecilin */
        display: flex; align-items: center; justify-content: center;
    }

    /* 2. Padding Card Dikurangi */
    .form-card .card-body { 
        padding: 15px !important; /* Dari 1.5rem (24px) jadi 15px */
    }

    /* 3. Tombol Pilihan (Pemasukan/Pengeluaran) Lebih Pendek */
    .type-selector .btn-outline-success,
    .type-selector .btn-outline-danger {
        padding: 8px 5px !important; /* Padding tombol ditipisin */
        font-size: 0.85rem;          /* Font teks dikecilin */
    }
    .type-selector i { 
        font-size: 0.9rem !important; /* Ikon panah dikecilin */
        margin-bottom: 2px !important; /* Jarak ikon ke teks dirapatkan */
    }

    /* 4. Input Nominal Uang Jadi Compact */
    .amount-input-group { 
        padding: 5px 10px !important; 
        border-radius: 12px !important;
    }
    .amount-input-group input { 
        font-size: 1.3rem !important; /* Turun drastis dari 2rem */
    }
    .amount-input-group span { 
        font-size: 0.9rem !important; 
    }

    /* 5. Input & Select Lainnya (Dompet, Kategori, dll) */
    .form-select, .form-control {
        font-size: 0.9rem !important; /* Huruf input standar dikecilin dikit */
        padding-top: 8px !important;   /* Padding atas-bawah ditipisin */
        padding-bottom: 8px !important;
        height: auto !important;       /* Reset height kalau ada class form-control-lg */
    }
    
    /* Label Form */
    .form-label { 
        font-size: 0.8rem !important; 
        margin-bottom: 2px !important; 
    }
    
    /* 6. Rapatkan Jarak Antar Elemen (Margin) */
    .mb-4 { margin-bottom: 1rem !important; }
    .mb-3 { margin-bottom: 0.75rem !important; }
    .g-3 { --bs-gutter-y: 0.75rem !important; } /* Jarak Grid row dirapatkan */
    
    /* Tombol Simpan */
    .btn-lg {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-size: 1rem !important;
    }
}

.sidebar-nav .nav-link {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

.sidebar-nav .nav-link:hover {
    background: rgba(13,110,253,0.08);
}

.sidebar-nav .nav-link.active {
    background: #0d6efd;
    color: #fff;
}

.sidebar-nav .sub-menu {
    padding-left: 38px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.sidebar-nav .sub-menu i {
    width: 20px;
}

.sidebar-nav .collapse .nav-link.active {
    background: rgba(13,110,253,0.15);
    color: #0d6efd;
    font-weight: 600;
}

.desktop-topbar {
    position: sticky;    /* KUNCI: Biar nempel saat scroll */
    top: 0;              /* Tempel di paling atas */
    z-index: 1020;       /* Pastikan di atas konten lain */
    
    background: #fff !important; /* Putih, sama kayak sidebar */
    /* border-bottom: 1px solid rgba(0,0,0,0.05); Garis tipis di bawah */
    
    /* Hapus border kiri/radius aneh sebelumnya biar flat & nyatu */
    border-left: none !important;
    border-radius: 0 !important;
    
    /* Efek transparan dikit (Glassmorphism) biar makin mahal (Opsional) */
    /* background: rgba(255, 255, 255, 0.95) !important; */
    /* backdrop-filter: blur(5px); */
}

.topbar-chip {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
}

.topbar-user {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 999px;
    padding: 6px 12px;
}

.topbar-user i:first-child {
    color: #0d6efd;
}



/* TOPBAR DESKTOP */
.desktop-nav {
    position: sticky;
    top: 0;
    z-index: 1020;

    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.08);
    
    padding: 12px 24px;
}

/* ALIGN DENGAN SIDEBAR */
@media (min-width: 768px) {
    .desktop-nav {
        margin-left: -1px; /* sambung border sidebar */
    }

    body, html {
        overflow: hidden; /* Bye-bye scrollbar browser */
        height: 100%;
    }

    /* 2. Main Content jadi Flexbox Column Full Height */
    .main-content {
        height: 100vh; /* Tinggi pas selayar */
        display: flex;
        flex-direction: column;
        padding: 0 !important;
        overflow: hidden; 
    }

    /* 3. Topbar Diem di Atas (Gak perlu sticky lagi) */
    .desktop-topbar {
        position: relative !important; 
        flex-shrink: 0; /* Gak boleh menyusut */
        z-index: 10;
        width: 100%;
        /* Pastikan background putih solid biar rapi */
        background: #ffffff !important; 
    }

    .scroll-container-wrapper {
        flex-grow: 1; 
        overflow: hidden; 
        display: flex; 
        flex-direction: column; /* Atas: Frame, Bawah: Footer */
        padding-bottom: 0; /* Reset padding biar footer nempel dasar kalau mau */
    }

    .content-frame-wrapper {
        /* FIX: Jangan pakai height: auto! */
        /* Gunakan min-height: 0 biar dia nurut sama Flexbox dan gak dorong footer */
        flex: 1; 
        min-height: 0; 
        
        overflow-y: auto; 
        overflow-x: hidden;
        
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        
        scrollbar-width: thin;
        scrollbar-color: #cbd5e0 #f4f7fe;
        
        padding: 30px;
    }

    /* Style Footer di Desktop (Opsional, biar makin rapi posisinya) */
    .desktop-footer {
        flex-shrink: 0; /* Footer gak boleh mengecil/gepeng */
        padding-top: 10px;
        padding-bottom: 20px;
    }

    /* Webkit Scrollbar (Chrome/Safari/Edge) */
    .content-frame-wrapper::-webkit-scrollbar {
        width: 8px;
    }
    .content-frame-wrapper::-webkit-scrollbar-track {
        background: transparent;
        margin-top: 20px; /* Jarak dari atas */
        margin-bottom: 20px;
    }
    .content-frame-wrapper::-webkit-scrollbar-thumb {
        background-color: #d1d5db; /* Abu soft */
        border-radius: 20px;
        border: 3px solid transparent;
        background-clip: content-box;
    }
    .content-frame-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: #9ca3af;
    }
}

/* RIGHT ITEMS */
.desktop-date {
    background: transparent;
    color: #6c757d;
    font-weight: 500;
}

.desktop-user {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #212529;
    font-weight: 600;
}

.desktop-user i:first-child {
    color: #0d6efd;
}

.content-frame-wrapper {
    background-color: #f4f7fe; /* Warna abu background lama */
    /* min-height: calc(100vh - 90px); Full height dikurangi tinggi topbar */
    
    /* INI RAHASIANYA: Lengkungan di Kiri Atas */
    border-top-left-radius: 40px; 
    
    /* Opsional: Lengkungan Kiri Bawah juga biar manis pas scroll mentok */
    border-bottom-left-radius: 40px; 

    /* Padding internal biar konten gak nempel pinggir */
    padding: 30px;
}

/* KHUSUS MOBILE: Matikan efek ini biar layar lega */
@media (max-width: 768px) {
    .content-frame-wrapper {
        border-radius: 0 !important; /* Kotak biasa di HP */
        padding: 20px !important;
        min-height: auto;
        background-color: #f4f7fe;
    }
    /* Di HP body tetep abu-abu biar nyatu sama status bar */
    body {
        background-color: #f4f7fe !important;
    }
}