/* ==========================================
   2. MENU NAVIGASI & HARMONISASI SIDEBAR
   ========================================== */
/* Background Bar Navigasi Utama (Abu-abu Soft, bukan putih murni) */
.pkp_structure_head,
.pkp_head_wrapper,
.navigation_primary {
    background-color: #f4f6f8 !important; 
    border-bottom: 2px solid #3b75a4 !important; /* Garis aksen biru penyeimbang */
}

.pkp_navigation_primary_wrapper,
.pkp_nav_list {
    background-color: transparent !important;
    padding-top: 0px;
}

.pkp_navigation_user {
    padding-top: 0px;
}

/* Teks Nama Menu Navigasi Utama & User (Warna Default) */
.pkp_nav_list li a,
.pkp_navigation_user li a {
    color: #3b75a4 !important; /* Biru medium tegas */
    font-size: 14px !important;
    font-weight: 800 !important; 
    text-transform: uppercase;
    padding: 10px 18px !important;
    letter-spacing: 0.5px;
    background: transparent !important;
    
    /* Efek Timbul / Emboss 3D Soft */
    text-shadow: 
        1px 1px 0px #ffffff,
        1px 2px 2px rgba(0, 0, 0, 0.25);
    
    transition: all 0.2s ease-in-out;
}

/* Efek Hover (Teks Putih dengan Background Biru Pekat) */
.pkp_nav_list li a:hover,
.pkp_nav_list li a:focus,
.pkp_navigation_user li a:hover {
    color: #ffffff !important; /* Teks berubah menjadi putih murni */
    background-color: #2b547e !important; /* Latar tombol berubah jadi biru pekat */
    border-radius: 4px;
    text-decoration: none !important;
    
    /* Efek bayangan gelap agar teks tetap tajam */
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Menu Aktif / Halaman yang Sedang Dibuka */
.pkp_nav_list li.is_active a {
    color: #ffffff !important;
    background-color: #3b75a4 !important;
    border-radius: 4px;
    text-shadow: none !important;
}

/* Sub-Menu Dropdown */
.pkp_nav_list li ul {
    background-color: #f4f6f8 !important;
    border: 1px solid #3b75a4 !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.pkp_nav_list li ul li a {
    color: #2b547e !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: none;
    text-shadow: none;
}

.pkp_nav_list li ul li a:hover {
    background-color: #2b547e !important;
    color: #ffffff !important;
}

/* ==========================================
   PENYESUAIAN TAMPILAN SIDEBAR (HARMONISASI)
   ========================================== */
/* Header Blok / Widget Sidebar */
.pkp_structure_sidebar .block .title {
    background-color: #2b547e !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 8px 12px !important;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

/* Isi Konten Blok Sidebar */
.pkp_structure_sidebar .block .content {
    background-color: #f9fbfd !important;
    border: 1px solid #dce4ec !important;
    border-top: none;
    padding: 12px !important;
    border-radius: 0 0 4px 4px;
}

/* Link di Dalam Sidebar */
.pkp_structure_sidebar .block a {
    color: #3b75a4 !important;
    font-weight: 600;
}

.pkp_structure_sidebar .block a:hover {
    color: #1e3a5f !important;
    text-decoration: underline;
}