html, body {
    font-family: Arial, sans-serif;
    background: none;
    background-image: url("/public/bg_pssh.png");
    background-size: 100% 100%; /* Menyesuaikan ukuran gambar menjadi 50% dari lebar dan tinggi elemen */
    background-attachment: fixed; /* Membuat background tetap di tempat saat di-scroll */
    background-position: center; /* Memusatkan background */
    margin: 0;
    padding: 0;
}

.additional-menu {
    padding: 0;
    margin: 0;
}

.title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    color: #999;
    border-bottom: 2px solid #f3bc4b;
    padding-bottom: 5px;
}

.menu-item {
    padding: 6px 0;
    background: none;
    color: #2B3333;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000000; /* Ensure the border color is black */
    transition: background-color 0.3s ease, padding-left 0.3s ease, padding-right 0.3s ease; /* Add transition for hover effects */
}

.menu-item a {
    color: #2B3333;
    text-decoration: none;
    margin-left: 5px;
}

.menu-item em {
    margin-right: 8px;
    font-size: 1.2em;
    padding-left: 2px;
}

/* Hover effect */
.menu-item:hover {
    background-color: #f0f0f0;
    padding-left: 10px; /* Add left padding on hover */
    padding-right: 10px; /* Add right padding on hover */
}

.obj_issue_toc .cover img {
    margin-left: auto;
    margin-right: auto;
    width: auto; /* Sesuaikan lebar sesuai kebutuhan */
    height: 250px; /* Menjaga rasio aspek */
}

.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 220px;
    max-width: 100%;
    width: 1250px;
    height: auto;
}
/* Style for navigation user links */
.pkp_navigation_user a {
    display: inline-block; /* Ensures proper padding is applied */
    padding: 5px 0; /* Combines top and bottom padding for consistency */
    line-height: 20px; /* Sets a consistent line height */
    color: #333; /* Default text color */
    text-decoration: none; /* Removes underline from links */
    transition: color 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for navigation user links */
.pkp_navigation_user a:hover,
.pkp_navigation_user a:focus {
    color: #ff8000; /* Changes color on hover and focus for better visibility */
    text-decoration: underline; /* Optional: Adds underline on hover */
}
.pkp_navigation_user_wrapper {
    top: 0px;
    right: 0;
    left: auto;
    width: 100%;
    padding-right: 30px;
}
.pkp_site_name {
    width: 100%; /* Mengatur lebar elemen pembungkus menjadi 100% */
    margin: 0px; /* Menghilangkan margin */
    padding: 0px; /* Menghilangkan padding */
    padding-top: 20px;
    padding-bottom: 19px;
}

.pkp_navigation_primary_row {
    background: #ffff;
    border-top: 1px solid #DDDDDD;
}

.authors {
    display: block;
    margin-bottom: 10px;
}

.authors .author-name {
    display: inline;
    font-size: 1em;
    margin-right: 5px;
}

.authors .author-affiliation {
    display: inline;
    font-size: 0.9em;
    margin-left: 2px;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 20px; /* Mengatur jarak antar elemen */
}

.abstract-views, .pdf-downloads {
    display: inline-flex;
    align-items: center;
    font-size: 14px; /* Mengatur ukuran font */
}

.abstract-views::before, .pdf-downloads::before {
    content: '';
    display: inline-block;
    width: 20px; /* Lebar gambar */
    height: 20px; /* Tinggi gambar */
    margin-right: 5px; /* Jarak antara gambar dan teks */
    background-size: contain; /* Mengatur gambar agar sesuai dengan kotak */
    background-repeat: no-repeat;
    background-position: center;
}

.abstract-views::before {
    background-image: url("/public/abs_view.png"); /* Ganti dengan path ke gambar Abstract Views */
}

.pdf-downloads::before {
    background-image: url("/public/pdf_down.png"); /* Ganti dengan path ke gambar PDF Downloads */
}

a[href^="mailto:"] {
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 5px;
    height: 20px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
}