/* ==========================================================================
   1. PENGATURAN FONT GLOBAL & TATA LETAK DASAR
   ========================================================================== */
body, 
.pkp_structure_page, 
.pkp_structure_main, 
.pkp_block, 
.pkp_navigation_primary_row, 
#navbar, 
.obj_article_summary, 
.content td {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 12pt !important;
}

.pkp_structure_page {
    margin: 0 auto;
    width: auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   2. HEADER & BANNER LOGO RESPONSIF
   ========================================================================== */
.pkp_structure_head {
    background: #8b0101;
    border-bottom: 0.5rem solid #8b0101;
    width: 100% !important;
    height: auto !important; 
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.pkp_head_wrapper, 
.pkp_site_name {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.obj_announcement_full .description {
    display: block !important;
}

.pkp_site_name .is_img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_site_name .is_img img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important; 
    max-height: none !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
}

.homepage-cover-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    background-color: transparent;
}

.homepage-cover-img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease;
}

.homepage-cover-img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   3. MENU NAVIGASI & SEARCH
   ========================================================================== */
#navbar {
    background-color: #8b0101;
    margin-bottom: 15px;
}

#navbar a, 
#navbar a:link, 
#navbar a:visited {
    text-transform: none;
}

#navbar a:hover {
    background-color: #EB5151;
}

.pkp_navigation_primary_row {
    background: #f23737;
    padding: 0.3rem 2rem 0 1rem;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li {
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a {
    margin: 0 !important;
    padding: 0 10px !important;
    line-height: 32px !important;
    font-size: 12pt !important;
    color: #000000 !important;
    font-weight: bold !important;
    transition: 0.2s;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a:hover {
    background: #8b0101;
    color: #ffffff !important;
    border-radius: 15px !important;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul {
    background: #541414 !important;
    border-radius: 0 !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li {
    border-bottom: solid 1px #ffffff !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li:last-child {
    border-bottom: none !important;
}

.pkp_navigation_search_wrapper a {
    padding-bottom: 4px;
    border-bottom-width: 3px;
    color: #ffffff;
}

/* Efek Hover Elegan Menu Utama (Contact, Archives, History) */
.pkp_navigation_primary_row a[href*="contact"],
.pkp_navigation_primary_row a[href*="archive"],
.pkp_navigation_primary_row a[href*="issue"],
.pkp_navigation_primary_row a[href*="history"],
.pkp_navigation_primary_row a[href*="about"],
a[href*="contact"], a[href*="archive"], a[href*="history"] {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="contact"]::after,
.pkp_navigation_primary_row a[href*="archive"]::after,
.pkp_navigation_primary_row a[href*="issue"]::after,
.pkp_navigation_primary_row a[href*="history"]::after,
.pkp_navigation_primary_row a[href*="about"]::after,
a[href*="contact"].contact-link::after,
a[href*="archive"]::after,
a[href*="history"]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ffffff;
    transition: width 0.3s ease, left 0.3s ease !important;
}

.pkp_navigation_primary_row a[href*="contact"]:hover::after,
.pkp_navigation_primary_row a[href*="archive"]:hover::after,
.pkp_navigation_primary_row a[href*="issue"]:hover::after,
.pkp_navigation_primary_row a[href*="history"]:hover::after,
.pkp_navigation_primary_row a[href*="about"]:hover::after,
a[href*="contact"].contact-link:hover::after,
a[href*="archive"]:hover::after,
a[href*="history"]:hover::after {
    width: 100%;
    left: 0;
}

.pkp_navigation_primary_row a[href*="contact"]:hover,
a[href*="contact"]:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.contact-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #8b0101;
    color: #ffffff !important;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background-color: #ef1212;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(239, 18, 18, 0.3);
}

/* Tambahan Modern: Tombol Make a Submission (CTA Button) */
.btn-submit-ojs {
    display: block;
    width: 100%;
    padding: 12px;
    background: #8b0101;
    color: #ffffff !important;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 10px 0;
}

.btn-submit-ojs:hover {
    background: #22c55e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 197, 94, 0.3);
}

/* ==========================================================================
   4. SIDEBAR & MENU SAMPING (SIDE MENU)
   ========================================================================== */
#leftSidebar, #rightSidebar {
    margin: 20px 0 0 0;
    padding: 4px;
    background-color: #eeeeee;
    background-image: none;
    height: auto;
    overflow: hidden;
}

#leftSidebar {
    display: none;
    border-right: 1px solid #ccc;
    float: left;
    width: 0;
}

.pkp_structure_sidebar:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

ul.sidemenu {
    margin-top: -6px;
    padding-left: 2px !important;
}

ul.sidemenu.full {
    margin: -12px -12px 0 -12px;
}

ul.sidemenu li:before {
    display: none;
}

ul.sidemenu li {
    padding: 0;
}

ul.sidemenu li:first-child a {
    border-top: 0px solid #620c0c;
}

ul.sidemenu li a {
    display: block;
    padding: 0em 8px;
    border-bottom: 1px solid #620c0c;
    background-color: #8b0101;
    text-decoration: none;
    color: #ffffff;
}

ul.sidemenu li a:hover {
    background-color: #f72323;
    text-decoration: underline;
}

ul.sidemenu li:last-child a {
    border-bottom: 0;
}

.block li:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    left: -1em;
    top: 0em;
    position: relative;
}

#leftSidebar div.block span.blockTitle, 
#rightSidebar div.block span.blockTitle {    
    background-color: #8b0101;
    color: #ffffff;
    box-shadow: 0px 2px 5px -2px rgba(51,51,51,1);
}

.pkp_block {
    padding: 0.5rem;
    line-height: 1.2rem;
    text-align: center;
}

.pkp_block .title {
    display: block;
    height: 32px;
    border-bottom: 1px solid #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #8b0101;
    text-align: center;
    color: #ffffff;
    line-height: 2;
    max-width: 100%;
    padding-inline: inherit;
}

/* ==========================================================================
   5. STRUKTUR KONTEN UTAMA, ARTIKEL & GALLEY
   ========================================================================== */
.pkp_structure_main {
    width: 860px;
    text-align: justify;
    max-width: 100%;
    word-spacing: 0.5px;
    line-height: 1.4rem;
}

.pkp_structure_main p {
    line-height: 1.4rem;
    margin: 0.75rem 0;
    max-width: 100%;
}

.pkp_page_index .current_issue .current_issue_title,
.pkp_structure_main .page h1,
.obj_article_details .page_title {
    background: rgba(81, 59, 59, 0.12);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.obj_issue_toc .section h2 {
    display: block;
}

.obj_article_summary {
    margin-bottom: 6px;
    padding: 6px 0.75rem;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 2px 2px 6px #dedede;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.obj_article_summary p {
    margin: 4px 0 !important;
}

.obj_article_summary:hover {
    background: rgba(239, 18, 18, 0.12);
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.obj_article_summary .galleys,
.obj_article_details .galleys {
    margin: 2px 0 !important;
}

.obj_galley_link {
    font-weight: 700;
    text-transform: capitalize !important;
    background: transparent !important;
    color: #000000 !important;
    border: solid 1px #ef1212 !important;
    font-size: 12pt !important;
    margin-top: 2px !important;
    display: inline-block;
    transition: all 0.3s ease !important;
}

.obj_galley_link:hover {
    background: #8b0101 !important;
    color: #ffffff !important;
    animation: subtlePulse 1.5s infinite ease-in-out;
    box-shadow: 0 4px 12px rgba(139, 1, 1, 0.2) !important;
}

.obj_article_details .abstract,
.obj_article_details .references {
    text-align: justify;
}

.obj_issue_summary, 
.pkp_issue_summary {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 8px;
    background: transparent;
}

.obj_issue_summary:hover, 
.pkp_issue_summary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 18px rgba(139, 1, 1, 0.12) !important;
    background: rgba(239, 18, 18, 0.03);
}

.obj_issue_summary img,
.pkp_issue_summary img {
    transition: transform 0.4s ease, filter 0.4s ease !important;
}

.obj_issue_summary:hover img,
.pkp_issue_summary:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
}

.history-section, 
.pkp_structure_main h2, 
.pkp_structure_main h3 {
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.history-container, 
.about-history {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.history-container:hover, 
.about-history:hover {
    background: rgba(139, 1, 1, 0.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   6. MENU INTERAKTIF CONTENT & CUSTOMBLOCK
   ========================================================================== */
.content {
    margin-top: -12px;
}

.content td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 0.5rem;
    background-color: #8b0101;
    transition: 0.7s;
    position: relative;
    z-index: 1;
    white-space: nowrap !important;
    container-type: inline-size;
    font-size: clamp(8pt, 6cqi, 12pt) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.content .fa {
    padding: 0 6px;
}

.content td:hover {
    background-color: #ef1212;
    box-shadow: rgba(239, 18, 18, 0.5) 2px 2px 2px 3px;
    color: #ffffff !important;
}

.content td::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #22c55e;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 800ms;
}

.content td:hover::after {
    transform: scaleX(1);
}

.customblock-menu {
    container-type: inline-size;
    width: 100%;
    margin-top: 25px !important;
    position: relative !important;
    background-color: transparent !important;
}

.customblock-menu table,
.customblock-menu tr,
.customblock-menu td,
.customblock-menu th,
.customblock-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: clamp(2pt, 6cqi, 9pt) !important;
}

/* ==========================================================================
   7. STRUKTUR TEAM EDITOR & REVIEWER (.team-container & .reviewer-container)
   ========================================================================== */
.team-container,
.reviewer-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.team-container .team-member,
.reviewer-container .reviewer-member {
    margin-bottom: 0;
    padding: 12px 1rem;
    border-radius: 1rem;
    background: transparent;
    box-shadow: 2px 2px 6px #dedede;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-container .team-member:hover,
.reviewer-container .reviewer-member:hover {
    background: rgba(239, 18, 18, 0.08);
    box-shadow: 2px 2px 8px #cccccc;
}

.team-container .member-role,
.reviewer-container .reviewer-role {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    background-color: transparent;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.team-container .member-details,
.reviewer-container .reviewer-details {
    display: flex;
    flex-direction: column;
}

.team-container .member-name,
.reviewer-container .reviewer-name {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 13pt !important;
    font-weight: bold;
    color: #8b0101;
    margin-bottom: 6px;
}

.team-container .member-data,
.reviewer-container .reviewer-data {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    font-size: 11pt !important;
    line-height: 1.4rem;
    color: #333333;
}

.team-container .member-data li,
.reviewer-container .reviewer-data li {
    padding: 0 !important;
    margin-bottom: 2px;
    background: transparent !important;
    border: none !important;
}

.team-container .member-data li:before,
.reviewer-container .reviewer-data li:before {
    display: none !important;
}

.team-container .member-data a,
.reviewer-container .reviewer-data a {
    color: #8b0101;
    text-decoration: underline;
}

.team-container .member-data a:hover,
.reviewer-container .reviewer-data a:hover {
    color: #ef1212;
}

/* ==========================================================================
   8. TIMELINE JURNAL & PEER-REVIEWED PROCESS
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 850px;
    margin: 30px auto;
    padding: 20px;
    font-family: "Bookman Old Style", Times, serif !important;
}

.timeline-item {
    position: relative;
    padding-left: 35px;
    padding-bottom: 25px;
    border-left: 3px solid #8b0101;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-left-color: #ef1212;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8.5px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #8b0101;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(139, 1, 1, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-date {
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    background-color: #8b0101;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.95em;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-event {
    color: #333333;
    line-height: 1.6;
    font-size: 11pt;
    background: #fdfdfd;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover .timeline-event {
    box-shadow: 0 4px 12px rgba(139, 1, 1, 0.08);
    transform: translateX(4px);
}

.process-container {
    max-width: 900px;
    margin: 30px auto;
    font-family: "Bookman Old Style", Times, serif !important;
    color: #333333;
    line-height: 1.6;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 3px;
    height: calc(100% + 10px);
    background-color: #cbd5e1;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.process-step:hover:not(:last-child)::after {
    background-color: #8b0101;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #8b0101;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    z-index: 2;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-content {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #8b0101;
    padding: 15px 20px;
    border-radius: 6px;
    margin-left: 20px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.process-step:hover .process-content {
    background: rgba(139, 1, 1, 0.015);
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(139, 1, 1, 0.08);
    transform: translateX(4px);
}

.process-title {
    font-weight: bold;
    font-size: 1.15em;
    color: #8b0101;
    margin-bottom: 6px;
}

.process-desc {
    font-size: 11pt;
    color: #475569;
    margin: 0;
}

@media (max-width: 600px) {
    .timeline-container { 
        padding: 10px; 
    }
    .timeline-item { 
        padding-left: 25px; 
    }
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .process-content {
        margin-left: 0;
        margin-top: 15px;
        border-left: 1px solid #e2e8f0;
        border-top: 4px solid #8b0101;
    }
}

/* ==========================================================================
   9. PUBLICATION ETHICS (.ojs-ethics-wrapper)
   ========================================================================== */
.ojs-ethics-wrapper {
    font-family: "Bookman Old Style", Times, serif !important;
    color: #2b2d42;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
}

.ojs-ethics-wrapper .hero-banner {
    background: linear-gradient(135deg, #8b0101 0%, #541414 100%);
    color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: ojsFadeIn 0.8s ease-in-out;
}

.ojs-ethics-wrapper .hero-intro {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #22c55e;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    text-align: justify;
}

.ojs-ethics-wrapper h2.section-title {
    color: #8b0101;
    border-bottom: 3px solid #8b0101;
    padding-bottom: 8px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.ojs-ethics-wrapper .section-intro {
    background-color: #f8faf9;
    border-left: 4px solid #8b0101;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
}

.ojs-ethics-wrapper .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ojs-ethics-wrapper .grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #8b0101;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ojs-ethics-wrapper .grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 1, 1, 0.12);
    border-top-color: #22c55e;
}

.ojs-ethics-wrapper .card-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #8b0101;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.ojs-ethics-wrapper .grid-card:hover .card-title {
    color: #22c55e;
}

.ojs-ethics-wrapper .card-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* ==========================================================================
   10. KOMPONEN TAMBAHAN (ALERT BOXES, INDEXING & CUSTOM TABLES)
   ========================================================================== */
/* Alert Box (Kotak Informasi Pengumuman Kustom) */
.ojs-alert-info {
    font-family: "Bookman Old Style", Times, serif !important;
    background-color: #f8faf9;
    border-left: 5px solid #8b0101;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.ojs-alert-info:hover {
    border-left-color: #22c55e;
    background-color: #f0fdf4;
}

/* Indexing Badge Grid (Wadah Logo Indeksasi Tambahan) */
.indexing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.indexing-badge {
    max-width: 140px;
    height: auto;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.indexing-badge:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Custom Table (Untuk Author Fees / Timetable) */
.ojs-custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: "Bookman Old Style", Times, serif !important;
}

.ojs-custom-table th {
    background-color: #8b0101;
    color: #ffffff;
    padding: 10px 12px;
    text-align: left;
    font-weight: bold;
}

.ojs-custom-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.ojs-custom-table tr:hover {
    background-color: rgba(239, 18, 18, 0.05);
}

/* ==========================================================================
   11. FOOTER & SLIDE LOGO FOOTER
   ========================================================================== */
.pkp_brand_footer {
    display: none;
}

.pkp_footer_content {
    padding: inherit;
    text-align: center;
    background: transparent url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS8kPj8XsUAesuZTIOdsxrwErwiNPuABu43WhNGItaHhLr4iOMgyHAw1mEHJP7F6wP0Etg&usqp=CAU") repeat scroll 0% 0% !important;
    max-width: 100%;
    max-height: 100%;
}

.pkp_structure_footer_wrapper {
    background: #e8ebef;
    border-bottom: 2px solid #595959;
}

.body_logo {
    padding: 1px 0;
    overflow: hidden;
}

.slide_logo {
    margin: auto;
    position: relative;
    display: flex;
    place-items: center;
    justify-content: space-evenly;
}

.track_logo {
    display: flex;
    width: calc(250px * 5);
    animation: slideLeft 10s linear infinite;
}

.track_logo:hover {
    animation-play-state: paused;
}

.logo a {
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    perspective: 150px;
} 

.logo img {
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.logo img:hover {
    transform: translateZ(20px) scale(1.05);
}

.slide_logo::before,
.slide_logo::after {
    background: linear-gradient(to right, transparent 100%);
    content: '';
    height: 75px;
    position: absolute;
    width: 15%;
    z-index: 2;
    top: 0;
}

.slide_logo::before { left: 0; }
.slide_logo::after { right: 0; transform: rotateZ(180deg); }

/* ==========================================================================
   12. UTILITY CLASSES, HOVER HIGHLIGHTS & ANIMASI KEYFRAMES
   ========================================================================== */
.linkHitam { color: #000000; }
.linkPutih { color: #ffffff; }
.linkMerah { color: #ff0000; }

.galleryImg {
    height: 150px;
    width: 100%;
    transform-origin: 50% 50%;
    transition: transform 30s linear;
}

.galleryImg:hover {    
    transform: scale(2) rotate(0.1deg);
}

.pkp_page_index .additional_content {
    padding: 0 1rem;
    text-align: center;
}

/* Efek Hover Lingkaran Akses UNISMA (Hijau Terang) */
.timeline-item:hover::before {
    background-color: #22c55e !important;
    border-color: #ffffff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.process-step:hover .process-number {
    background-color: #22c55e !important;
    color: #ffffff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.circle:hover, 
[class*="circle"]:hover {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

/* Keyframe Animations */
@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120%)); }
}

@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes ojsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
<style>
/* CSS Khusus Halaman Etika Publikasi (Yurispruden Style) */
.ojs-ethics-wrapper {
    font-family: "Bookman Old Style", Times, serif !important;
    color: #2b2d42;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
    scroll-behavior: smooth;
}

/* Navigasi Cepat Cepat Interaktif */
.quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    background: #f8faf9;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.quick-nav a {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 11pt !important;
    font-weight: bold;
    color: #8b0101 !important;
    text-decoration: none !important;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #8b0101;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.quick-nav a:hover {
    background: #8b0101 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 1, 1, 0.2);
    border-color: #8b0101;
}

/* Kartu Interaktif (.card) */
.ojs-ethics-wrapper .card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #8b0101;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    overflow: hidden;
}

.ojs-ethics-wrapper .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #22c55e;
    transition: width 0.4s ease;
}

.ojs-ethics-wrapper .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 22px rgba(139, 1, 1, 0.12) !important;
}

.ojs-ethics-wrapper .card:hover::before {
    width: 100%;
}

.ojs-ethics-wrapper .card h3 {
    font-family: "Bookman Old Style", Times, serif !important;
    font-size: 1.15rem;
    font-weight: bold;
    color: #8b0101;
    margin-top: 0;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.ojs-ethics-wrapper .card:hover h3 {
    color: #22c55e;
}

.ojs-ethics-wrapper .card p {
    font-size: 11pt;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Kotak COPE Guidance Animatif */
.cope-box {
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #22c55e;
    border-radius: 6px;
    padding: 18px 22px;
    margin-top: 20px;
    margin-bottom: 35px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.cope-box:hover {
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.12);
    transform: translateX(4px);
}

.cope-box h4 {
    font-family: "Bookman Old Style", Times, serif !important;
    color: #8b0101;
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
}

.cope-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.cope-list li {
    position: relative;
    padding-left: 22px !important;
    margin-bottom: 8px !important;
    font-size: 11pt;
    color: #333333;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cope-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: -2px;
    color: #22c55e;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.cope-list li:hover {
    color: #8b0101;
    transform: translateX(4px);
}

.cope-list li:hover::before {
    transform: scale(1.4);
}
</style>

<style>
/* CSS Khusus Halaman AI Policy (Yurispruden Style) */
.ai-policy-wrapper {
    font-family: "Bookman Old Style", Times, serif !important;
    color: #2b2d42;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
}

/* Base Card Style & Animations */
.ai-policy-wrapper .policy-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #8b0101;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    overflow: hidden;
}

.ai-policy-wrapper .policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #22c55e;
    transition: width 0.4s ease;
}

.ai-policy-wrapper .policy-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 22px rgba(139, 1, 1, 0.12) !important;
}

.ai-policy-wrapper .policy-card:hover::before {
    width: 100%;
}

/* Variant Card: Hero */
.ai-policy-wrapper .card-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbfb 100%);
    border-top-color: #8b0101;
}

/* Variant Card: Accent */
.ai-policy-wrapper .card-accent {
    border-left: 4px solid #22c55e;
}

/* Typography Headings */
.ai-policy-wrapper h2 {
    font-family: "Bookman Old Style", Times, serif !important;
    color: #8b0101;
    font-size: 1.35rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.ai-policy-wrapper .policy-card:hover h2 {
    color: #22c55e;
}

.ai-policy-wrapper p {
    font-size: 11pt;
    color: #475569;
    margin-top: 0;
    margin-bottom: 16px;
    text-align: justify;
}

/* Interactive Bullet List */
.ai-policy-wrapper ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.ai-policy-wrapper ul li.show {
    position: relative;
    padding-left: 24px !important;
    margin-bottom: 12px !important;
    font-size: 11pt;
    color: #333333;
    transition: transform 0.2s ease, color 0.2s ease;
}

.ai-policy-wrapper ul li.show::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: -2px;
    color: #22c55e;
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.ai-policy-wrapper ul li.show:hover {
    transform: translateX(4px);
    color: #8b0101;
}

.ai-policy-wrapper ul li.show:hover::before {
    transform: scale(1.4);
}

/* Rules Table Styling & Animations */
.rules-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 10.5pt;
}

.rules-table th {
    background-color: #8b0101;
    color: #ffffff;
    font-family: "Bookman Old Style", Times, serif !important;
    font-weight: bold;
    text-align: left;
    padding: 12px 16px;
}

.rules-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    transition: background-color 0.25s ease;
}

.rules-table tbody tr {
    transition: transform 0.2s ease;
}

.rules-table tbody tr:hover td {
    background-color: #f8faf9;
}

.rules-table td p {
    font-size: 10.5pt;
    margin-bottom: 8px;
    text-align: left;
}

.rules-table td p:last-child {
    margin-bottom: 0;
}

/* Category Badges with Glowing Effects */
.category-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 9.5pt;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-permissible {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #ceead6;
}

.badge-permissible:hover {
    background-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.3);
}

.badge-exception {
    background-color: #fef7e0;
    color: #b06000;
    border: 1px solid #feefc3;
}

.badge-exception:hover {
    background-color: #f59e0b;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.3);
}

.badge-prohibited {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

.badge-prohibited:hover {
    background-color: #8b0101;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(139, 1, 1, 0.3);
}
</style>

<!-- Tambahkan style inline ini atau masukkan ke dalam file CSS Anda -->
<style>
  .quick-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom dengan lebar persis sama */
    gap: 12px;
    margin: 20px 0 30px 0;
    width: 100%;
  }

  .quick-nav a {
    text-align: center;
    padding: 10px 8px;
    text-decoration: none;
    background-color: #f4f4f4;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
  }

  /* Responsive: Mengubah jadi 2x2 pada layar smartphone */
  @media (max-width: 600px) {
    .quick-nav {
      grid-template-columns: repeat(2, 1fr);
    }
  }
<style>
  /* Menghapus margin/padding bawaan OJS yang merusak alignment */
  .ojs-ethics-wrapper {
    width: 100%;
    box-sizing: border-box;
  }

  .quick-nav {
    display: grid !important;
    /* Membagi 4 kolom dengan lebar persis sama dari ujung kiri ke kanan */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 20px 0 30px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .quick-nav a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 12px 8px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    
    /* Styling Visual Tombol */
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #0056b3;
    font-weight: 600;
  }

  .quick-nav a:hover {
    background-color: #0056b3;
    color: #ffffff;
  }

  /* Penyesuaian Responsif untuk Layar HP (2 kolom kiri-kanan rata) */
  @media (max-width: 768px) {
    .quick-nav {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }
</style>

<!-- Structure HTML Quick Nav -->
<div class="quick-nav">
  <a href="#duties-of-authors">Duties of Authors</a>
  <a href="#duties-of-editors">Duties of Editors</a>
  <a href="#duties-of-reviewers">Duties of Reviewers</a>
  <a href="#duties-of-publisher">Duties of Publisher</a>
</div>