
.header-v2 {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
}

.header-row .material-icons {
    color: #333;
}

.site-logo img {
    filter: none;
}

.mp-content-area-full {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

@media (max-width: 1024px) {
    .mp-content-area-full {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .mp-content-area-full {
        flex-direction: column;
    }
}

.mp-site-main-page {
    flex: 7;
}

.mp-page-header h1 {
    font-size: x-large;
}

.mp-page-nav-sidebar {
    flex: 3;
    position: sticky;
    top: 90px;
    height: fit-content;
}

/** [2026-01-15] VERSION: 1.7.0 - FINAL BOXED SIDE NAV (CSS ARROW) */

.mp-nav-title {
    font-size: large;
    margin-bottom: 15px;
    display: block;
    text-transform: capitalize;
}

.mp-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 2px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden; 
}

.mp-nav-list li {
    border-bottom: 1px solid #eeeeee;
}

.mp-nav-list li:last-child {
    border-bottom: none;
}

.mp-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease-in-out;
}

/* Arrow CSS (Border 45 derajat) */
.mp-nav-list a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    margin-left: 10px;
}

/* Hover Effect */
.mp-nav-list a:hover {
    background: #f9f9f9;
    color: #000;
}

.mp-nav-list a:hover::after {
    border-color: #0088cc;
    transform: rotate(45deg) translateX(3px);
}

/* Style untuk menu yang sedang aktif */
.mp-nav-list .current-menu-item a {
    background: #f0f8ff; 
    color: #0088cc;
    border-left: 4px solid #0088cc; 
    padding-left: 16px; 
    font-weight: 700;
}

.mp-nav-list .current-menu-item a::after {
    border-color: #0088cc;
}

html.dark-mode .header-v2 {
    background-color: #1a1a1a;
}

html.dark-mode .header-col-center img {
    filter: brightness(0) invert(1);
}

html.dark-mode .mp-nav-list a {
    background-color: #333;
}

html.dark-mode .mp-nav-list,
html.dark-mode .mp-nav-list li {
    border-color: #444;
}

html.dark-mode .mp-nav-list a:hover {
    color: #fff;
}

html.dark-mode .mp-nav-list .current-menu-item a:hover {
    color: #0088cc;
}

html.dark-mode .mp-page-entry-content p {
    color: #ccc;
}