html,
body {
    font-family: Arial, sans-serif;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /* agar gambar menyesuaikan ukuran layar */
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    text-align: justify;
}

.additional-menu {
    padding: 0;
    margin: 0;
}

.obj_article_summary>.title a {
    text-decoration: none;
    font-weight: bold;
}

.title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    color: #999;
    border-bottom: 2px solid #f3bc4b;
    padding-bottom: 5px;
}

.obj_article_summary .title {
    display: block;
    margin-top: 0.25em;
    margin-bottom: 0.5em;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.54);
    border-bottom: solid #f3bc4b;
}

.menu-item {
    padding: 6px 0;
    background: none;
    color: #020100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000000;
    transition: transform 0.2s ease;
    /* hanya animasi naik turun */
}

.menu-item a {
    color: #020100;
    text-decoration: none;
    margin-left: 5px;
}

.menu-item:hover {
    transform: translateY(-3px);
    /* sedikit naik saja */
}

.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 */
}