/* JAKMA CUSTOM STYLESHEET - FULL MARITIME BLUE EDITION */

/* 1. Kotak Utama dengan Background Biru Deep Maritim */
.pkp_block.block_information_journal, 
.pkp_block.block_information_submission {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(42, 92, 138, 0.2);
    /* Background Biru Solid yang Elegan */
    background: #083d99 !important; 
}

/* 2. Header Box Tetap Kuning Emas (Sebagai Mahkota) */
.pkp_block .title {
    background-color: #F4B41A !important; 
    color: #1a7fdb !important;
    padding: 18px !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 2px;
    text-align: center;
    border: #083d99 !important;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.1);
}

/* 3. Pengaturan List Menu */
.pkp_block .content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_block .content ul li {
    /* Garis pemisah antar menu dengan warna biru yang lebih gelap */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/* 4. Teks Menu Menjadi Biru Deep Maritim */
.pkp_block .content ul li a {
    display: block;
    padding: 15px 25px;
    color: #1a7fdb !important; /* Teks Putih agar terbaca di BG Biru */
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95em;
    font-weight: 500;
}

/* 5. Efek Hover: Menjadi Kuning Emas Saat Disentuh */
.pkp_block .content ul li a:hover {
    background-color: rgba(244, 180, 26, 0.2) !important; /* Highlight Kuning Transparan */
    color: #F4B41A !important; /* Teks Berubah Jadi Kuning Emas */
    padding-left: 35px; /* Efek Slide Modern */
    font-weight: 700;
}

/* 6. Hilangkan border pada item terakhir agar rapi */
.pkp_block .content ul li:last-child {
    border-bottom: none;
}