/* NAVBAR ORANGE KHUSUS JITST */

#navbar,
#navbar ul.menu {
    background-color: #ef6c00 !important;
}

/* Warna teks menu */
#navbar ul.menu li a {
    color: #ffffff !important;
}

/* Hover */
#navbar ul.menu li a:hover {
    background-color: #ff9800 !important;
}

/* --- Tambahan CSS untuk Additional Menu Oranye --- */
.pkp-block__title {
    background-color: #ff6600 !important; /* Warna Oranye Header */
    color: #ffffff !important;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid #cc5200;
    margin: 0; /* Reset margin */
}

.pkp-block__content {
    padding: 0 !important;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-top: none; /* Supaya menyatu dengan header */
    list-style: none;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    border-bottom: 1px solid #dddddd;
    transition: background-color 0.2s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333333; /* Warna teks normal Hitam */
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

/* Perbaikan untuk tag EM/Icon */
.menu-icon {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: #ff6600 !important; /* Ikon Oranye */
    font-style: normal !important; /* Hilangkan miring karena OJS ubah jadi EM */
    font-size: 16px;
}

/* --- Efek Hover Oranye --- */
.menu-item:hover {
    background-color: #e65c00 !important; /* Oranye Gelap saat Hover */
    border-left: 5px solid #ffffff;
}

.menu-item:hover .menu-link {
    color: #ffffff !important; /* Teks Putih saat Hover */
}

.menu-item:hover .menu-icon {
    color: #ffffff !important; /* Ikon Putih saat Hover */
}