html, body {
  background: url(https://journal.citacendekia.com/public/site/batik.jpg);
  background-size: 500px;
}

/* SETTING HEADER */
/* 1. Menargetkan container utama header agar lebar penuh */
 .pkp_structure_head {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Memastikan pembungkus logo tidak membatasi lebar */
.pkp_head_wrapper, 
.pkp_site_name_wrapper, 
.pkp_site_name {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Memaksa gambar logo untuk mengisi seluruh area */
.pkp_site_name .is_img img {
    width: 100% !important;   /* Memaksa lebar 100% layar */
    height: auto !important;  /* Menjaga proporsi agar tidak gepeng */
    max-height: none !important; /* Menghapus batasan tinggi bawaan OJS */
    display: block;
    object-fit: cover; /* Opsional: Memastikan gambar menutupi area tanpa distorsi */
}

/* STRUKTUR DASAR MENU (RAMAH SELULER & DESKTOP) */
.pkp_block.block_custom .content ul {
    list-style: none; /* Menghapus titik standar HTML */
    padding: 0;
    margin: 0;
}

.pkp_block.block_custom .content ul li {
    border-bottom: 1px solid #e0e0e0; /* Pemisah visual antar menu */
}

/* TAMPILAN BAWAAN MENU */
.pkp_block.block_custom .content ul li a {
    display: block;
    padding: 12px 16px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.25s ease-in-out;
    position: relative;
    background-color: transparent;
}

/* Kondisi Normal (Garis Tepi Saja) */
.author-email-icon {
    color: #1A05A2 !important; /* Warna hijau identitas jurnal */
    transition: all 0.3s ease-in-out;
}

.author-email-icon svg path,
.author-email-icon svg polyline {
    transition: all 0.3s ease-in-out;
}

/* Kondisi Disorot (Berwarna Penuh) */
.author-email-icon:hover svg path {
    fill: #1A05A2 !important; /* Badan amplop terisi warna hijau penuh */
}

.author-email-icon:hover svg polyline {
    stroke: #ffffff !important; /* Garis lipatan surat berubah putih agar kontras */
}