/* ==========================================================================
   1. WARNA UTAMA & HEADER
   ========================================================================== */
/* Mengubah warna latar belakang header utama */
.pkp_structure_head {
    background-color: #0d5c58 !important; /* Warna teal khas jurnal Lughaat */
}

/* Mengubah warna teks dan link pada header navigation */
.pkp_navigation_primary > li > a,
.pkp_navigation_user > li > a {
    color: #ffffff !important;
    font-weight: 500;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_user > li > a:hover {
    color: #e2f1f0 !important;
}

/* ==========================================================================
   2. CUSTOM SIDEBAR BUTTONS (TOMBOL MENU SIDEBAR)
   ========================================================================== */
/* Menata tampilan link/tombol di sidebar Custom Block */
.pkp_block .content a {
    display: block !important;
    background-color: #0d5c58 !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    margin-bottom: 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center !important;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Efek hover pada tombol sidebar */
.pkp_block .content a:hover {
    background-color: #083e3b !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Judul Blok Sidebar */
.pkp_block .title {
    border-bottom: 2px solid #0d5c58 !important;
    color: #0d5c58 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-bottom: 5px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

/* ==========================================================================
   3. TOMBOL PDF / BACA ARTIKEL
   ========================================================================== */
/* Mengubah tampilan badge / tombol PDF */
.obj_article_summary .galleys_links a.galley_link,
.obj_article_details .galleys_links a.galley_link {
    background-color: #0d5c58 !important;
    border-color: #0d5c58 !important;
    color: #ffffff !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    padding: 6px 12px !important;
}

.obj_article_summary .galleys_links a.galley_link:hover,
.obj_article_details .galleys_links a.galley_link:hover {
    background-color: #083e3b !important;
    border-color: #083e3b !important;
}

/* ==========================================================================
   4. JUDUL ARTIKEL & TAMPILAN KONTEN
   ========================================================================== */
/* Warna judul artikel pada daftar isi */
.obj_article_summary .title a {
    color: #1a252f !important;
    font-weight: 600;
}

.obj_article_summary .title a:hover {
    color: #0d5c58 !important;
}

/* Garis pembatas antar artikel */
.obj_article_summary {
    border-bottom: 1px solid #eef2f5 !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
}