/* =======================================================
   1. PENGATURAN HEADER & LOGO (SYNTAX NAVY-TEAL THEME)
   ======================================================= */

.pkp_site_name { padding-top: 0 !important; padding-bottom: 0 !important; }
.pkp_site_name > a { padding-top: 0; padding-bottom: 0; }
.pkp_site_name .is_img { display: inline-block; margin: 0; padding: 0; }
.pkp_site_name .is_img img { max-height: 300px !important; margin: 0; }
.pkp_head_wrapper, .has_site_logo .pkp_head_wrapper { position: relative; padding-top: 10px; background: transparent; }
.pkp_site_name_wrapper { padding-left: 0; padding-right: 0; }
/* =======================================================
   2. DESAIN SIDEBAR MENU (WARNA WARTA DHARMAWANGSA)
   ======================================================= */

.custom-journal-sidebar {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.custom-journal-sidebar .sidebar-header {
    background-color: #F2C938; /* Kuning Cover */
    border-bottom: 3px solid #0F387A; /* Garis Biru Tua */
    padding: 12px 15px;
    text-align: center;
}

.custom-journal-sidebar .blockTitle {
    color: #0F387A; /* Teks Biru Tua */
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.custom-journal-sidebar .sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-journal-sidebar .sidebar-menu-list li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
}

.custom-journal-sidebar .sidebar-menu-list li:last-child {
    border-bottom: none;
}

.custom-journal-sidebar .sidebar-menu-list a {
    color: #333333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Efek Hover Menu */
.custom-journal-sidebar .sidebar-menu-list a:hover {
    background-color: #0F387A; /* Ubah ke Biru Tua */
    color: #ffffff; /* Teks Putih */
    padding-left: 20px; /* Efek geser ke kanan */
}

/* Akses Kiri Merah saat Hover */
.custom-journal-sidebar .sidebar-menu-list a::before {
    background-color: #D9252A; /* Akses Merah */
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.2s ease;
    width: 4px;
}

.custom-journal-sidebar .sidebar-menu-list a:hover::before {
    opacity: 1;
}