.page h2{
font-family: 'Times New Roman', Times, serif;
}

.page h3{
font-family: 'Times New Roman', Times, serif;
}


.pkp_structure_head {
    background-image: url('https://ejournal.stdiis.ac.id/public/journals/2/pageHeaderLogoImage_id_ID.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}


/* Sembunyikan logo bawaan agar tidak tampil dua kali */
.pkp_site_name_wrapper .pkp_site_name img {
    display: none !important;
}


/* Turunkan menu agar tidak menumpuk background */
.pkp_site_nav_menu {
    margin-top: 70px; /* Angka ini bisa kamu sesuaikan */
    background-color: #00a321;
    border-radius: 10px;
    
}

/* Menjadikan header sticky */
.pkp_structure_head {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #3f44ffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Pada layar kecil, sembunyikan menu utama secara default 
@media (max-width: 768px) {
    .pkp_navigation_primary_row {
        display: none !important;
    }*/
    
    /* Tampilkan kembali jika menu aktif (nanti dikontrol JS OJS) 
    .pkp_navigation_primary_row.active {
        display: block !important;
    }
}*/

/* Untuk tombol hamburger agar selalu muncul */
.pkp_site_nav_toggle button{
    color: #085104;
}



@media (max-width: 768px) {
    .header.sticky .pkp_site_nav_toggle {
        display: block;
    }
}



/* Modernize font dan warna dasar */
.pkp_navigation_primary_row {
    background: linear-gradient(-45deg, #3f44ffff, #3dda2cff, #3f44ffff, #3dda2cff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px 10px 0 0;
    padding: 2px 20px;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Menu utama */
.pkp_navigation_primary li a {
    display: block;
    padding: 12px 10px;
    color: #1c009a;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
}

/* Hover effect animatif */
.pkp_navigation_primary li a:hover {
    background-color: rgb(107, 112, 248);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Active state (jika ingin saat diklik tetap aktif bisa ditambahkan class active di HTML OJS) */
.pkp_navigation_primary li a.active {
    background-color: rgba(2, 97, 34, 0.9);
    color: #fff;
}

/* Smooth dropdown user menu */
.pkp_navigation_user_wrapper {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.pkp_navigation_user li a {
    display: block;
    padding: 10px 15px;
    color: #3500f5;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.4); /* semi transparan */
    backdrop-filter: blur(8px); /* efek blur */
    -webkit-backdrop-filter: blur(8px); /* untuk dukungan Safari */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.pkp_navigation_user li a:hover {
    background-color: rgba(2, 97, 34, 0.9);
    color: #fff;
    transform: translateX(5px);
}

/* Style search icon modern */
.pkp_search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: rgb(176, 178, 255);
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pkp_search:hover {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #043709;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.pkp_search .fa {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.pkp_search:hover .fa {
    transform: rotate(20deg) scale(1.2);
}

.pkp_search p{
  color: #ffffff;
}
/* Responsive tweak basic */
@media (max-width: 768px) {
    .pkp_navigation_primary li a {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}





/* Background halaman login */
.page.page_login {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #09c02e, #013f10);
    padding: 30px;
}

/* Kotak form login */
.cmp_form.login {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Judul Login di atas form */
.page_login h1 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
}

/* Subtitle Required fields */
.page_login > p {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f0f0f0;
    font-size: 5px;
}

/* Form input fields layout melebar */
.cmp_form.login .fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

/* Set ukuran masing-masing field */
.cmp_form.login .username, .cmp_form.login .password {
    flex: 0 0 48%;
}

/* Label input */
.cmp_form.login .label {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

/* Input box */
.cmp_form.login input[type="text"],
.cmp_form.login input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Efek hover input */
.cmp_form.login input[type="text"]:focus,
.cmp_form.login input[type="password"]:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    transform: scale(1.02);
}

/* Checkbox remember me */
.cmp_form.login .remember {
    width: 100%;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Tombol Login */
.cmp_form.login button.submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* Hover tombol login */
.cmp_form.login button.submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tombol register */
.cmp_form.login .register {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(45deg, #03c22c, #71b603);
    color: #fff;
    transition: 0.3s;
}

/* Hover register */
.cmp_form.login .register:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Breadcrumb disembunyikan */
.page_login .cmp_breadcrumbs {
    display: none;
}





/* Atur posisi breadcrumb tetap di atas */
.page_register nav.cmp_breadcrumbs {
    margin: 30px auto 20px auto;
    text-align: center;
    font-weight: 500;
}

/* Container form register */
.page_register {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 50px 20px;
    min-height: 100vh;
}

/* Judul register di tengah */
.page_register h1 {
    text-align: center;
    font-size: 36px;
    color: #002406;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Required fields text */
.page_register p {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* Form container */
.cmp_form.register {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInZoom 0.8s ease;
}

/* Animasi saat form muncul */
@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fieldset Title */
.cmp_form.register legend {
    font-size: 24px;
    color: #003049;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Field layout melebar */
.cmp_form.register .fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cmp_form.register .fields > div {
    flex: 1 1 45%;
}

/* Input Field */
.cmp_form.register input[type="text"],
.cmp_form.register input[type="password"],
.cmp_form.register input[type="email"],
.cmp_form.register select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.cmp_form.register input:focus,
.cmp_form.register select:focus {
    border-color: #0077b6;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 119, 182, 0.3);
    outline: none;
}

/* Label */
.cmp_form.register .label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

/* Checkbox */
.cmp_form.register input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
}

/* Tombol Register */
.cmp_form.register button.submit {
    width: 100%;
    padding: 15px;
    background: #016111;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cmp_form.register button.submit:hover {
    background: #023e8a;
    transform: translateY(-3px);
}

/* Tombol Login di bawah */
.cmp_form.register a.login {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    background: #eeeeee;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.cmp_form.register a.login:hover {
    background: #d4d4d4;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Neumorphism Checkbox Style */
.cmp_form.register input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #f0f0f3;
    box-shadow: 5px 5px 10px #d1d9e6,
                -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hover effect */
.cmp_form.register input[type="checkbox"]:hover {
    box-shadow: inset 5px 5px 10px #d1d9e6,
                inset -5px -5px 10px #ffffff;
}

/* Checked style */
.cmp_form.register input[type="checkbox"]:checked {
    background: linear-gradient(145deg, #06b02b, #529801);
    box-shadow: inset 5px 5px 10px #b8dfca,
                inset -5px -5px 10px #c0f0dd;
}

/* Checkmark animation */
.cmp_form.register input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

/* Label sejajar */
.cmp_form.register .optin label, 
.cmp_form.register .reviewer label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}







/* General layout search page */
.page_search {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px 40px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Judul utama */
.page_search h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Breadcrumb tetap di atas */
.cmp_breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Search input utama */
.search_input input.query {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search_input input.query:focus {
    border-color: #4CAF50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Fieldset advanced filter */
.search_advanced {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
}

/* Judul advanced filter */
.search_advanced legend {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Date range layout */
.date_range {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Masing-masing bagian tanggal */
.date_range fieldset {
    flex: 1;
    border: none;
}

/* Select tanggal */
.date_range select, .author input {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    transition: 0.3s;
}

.date_range select:focus, .author input:focus {
    border-color: #4CAF50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Author */
.author {
    margin-top: 20px;
}

/* Tombol search */
.submit button.submit {
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border: none;
    color: white;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.submit button.submit:hover {
    background: linear-gradient(135deg, #388E3C, #43A047);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Result message */
.cmp_notification.notice {
    background: #ffeeba;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Responsive */
@media (max-width: 768px) {
    .date_range {
        flex-direction: column;
    }

    .page_search {
        padding: 20px;
    }
}








/* Umum: Gunakan font modern */
body {
    font-family: 'Times New Roman','Times','Serif'; /* FONT UNTUK HALAMAN ARTIKEL */
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header Judul Halaman */
.page_title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #023e8a;
}

.page_issue h1{
font-family: 'Times New Roman', Times, serif;
}

/* Breadcrumbs */
.cmp_breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #555;
}

.cmp_breadcrumbs a {
    color: #0077b6;
    text-decoration: none;
    transition: color 0.3s;
}

.cmp_breadcrumbs a:hover {
    color: #023e8a;
}

/* Paragraf konten */
.page p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1em;
}

/* Sidebar Box */
.pkp_structure_sidebar .pkp_block {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Styling untuk judul sidebar */
.pkp_block .title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg,  #3f44ffff, #3dda2cff);
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-transform: capitalize;
}

/* Hover effect */
.pkp_block .title:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  transform: scale(1.05);
  cursor: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


.pkp_structure_sidebar .pkp_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Hapus judul invisible yang bawaan OJS */
.pkp_screen_reader {
    display: none;
}

/* Semua gambar di sidebar */
.pkp_structure_sidebar img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animasi hover gambar */
.pkp_structure_sidebar a:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive grid untuk sidebar (jika mau pakai grid di versi lanjut) */
@media (min-width: 992px) {
    .pkp_structure_sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .pkp_structure_sidebar .pkp_block {
        padding: 10px;
    }
    .page_title {
        font-size: 1.5em;
    }
}






.homepage_about{
   background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.homepage_about:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.homepage_about h2{
  font-family: 'Times New Roman', Times, serif;
}








/* INDEXING FOOTER  */

.pkp_structure_footer_wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 20px 30px 20px;
    font-family: 'Poppins', sans-serif;
    max-height: 300px;
}


.pkp_footer_content {
  position: relative;
  padding-top: 80px; /* beri ruang atas agar tidak ketabrak judul */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px 40px 20px;
}

/* Judul INDEXING tetap di atas */
.pkp_footer_content p:first-child {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #002b07;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Setiap gambar */
.pkp_footer_content p {
  flex: 1 1 200px;
  max-width: 200px;
  margin: 15px;
}

/* Gambar di dalamnya */
.pkp_footer_content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: all 0.5s ease;
  filter: grayscale(100%);

}

/* Efek hover */
.pkp_footer_content img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  
}








/* ALAMAT DLL FOOTER  */

.pkp_brand_footer{
 background: #3dda2cff;
}
.pkp_brand_footer::before {
  content: "Alamat Redaksi Al-Atsar: Program Studi Ilmu Hadits Sekolah Tinggi Dirasat Islamiyah Imam Syafii Jember. JL. MH. Thamrin Gang Kepodang No 5 Jember Jawa Timur, Indonesia. Telp/Fax: 0331-326 831. Email: al.atsar.ejournal@gmail.com";
  white-space: pre-line;
  color: #fff;
  display: block;
  font-size: 18px;
  text-align: center;
}

/*
.pkp_brand_footer{
    display: none !important;
}

.pkp_brand_footer::after {
  content: "";
  display: block;
  background: url('http://ejournal.stdiis.ac.id/public/site/images/irfan_yuhadi/garuda-61070b886a81b565002639c4d9a4534b.png') center/contain no-repeat;
  width: 150px;
  height: 80px;
  margin: 10px auto;
}*/



/* ARCHIVE */

.obj_issue_summary {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obj_issue_summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Untuk gambar cover */
.obj_issue_summary .cover {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.obj_issue_summary .cover img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.obj_issue_summary:hover .cover img {
  transform: scale(1.05);
}

/* Tambahan supaya judul lebih cantik */
.obj_issue_summary h2 a.title {
  color: #333;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}

.obj_issue_summary .series {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}





.heading {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heading:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Gambar cover */
.heading .cover {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.heading .cover img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.heading:hover .cover img {
  transform: scale(1.05);
}

/* Deskripsi */
.heading .description {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* DOI style */
.heading .pub_id {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

.heading .pub_id .type {
  font-weight: bold;
  color: #333;
}

.heading .pub_id .id a {
  color: #007BFF;
  text-decoration: none;
}

.heading .pub_id .id a:hover {
  text-decoration: underline;
}

/* Published date */
.heading .published {
  font-size: 14px;
  color: #777;
}

.heading .published .label {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .heading {
    padding: 20px;
  }
}









/* Untuk membungkus gambar dan membuatnya selalu di tengah */
.page_announcements p {
  text-align: center;
}

/* Untuk gambar dalam announcement */
.page_announcements img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  display: inline-block; /* agar tetap di tengah */
}

/* Efek zoom ketika hover */
.page_announcements img:hover {
  transform: scale(2.1);
}

/* Untuk judul announcement */
.page_announcements p strong {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}





/* Bungkus keseluruhan artikel summary */
.obj_article_summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  max-width: 800px;
}

/* Efek hover melayang */
.obj_article_summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Judul artikel */
.obj_article_summary .title a {
  font-size: 22px;
  font-weight: 700;
  color: #121d5e;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Times New Roman', Times, serif;
}

.obj_article_summary .title a:hover {
  color: #3f44ffff;
}

.subtitle{
  font-family: 'Times New Roman', Times, serif;
}
/* Meta data: authors dan pages */
.obj_article_summary .meta {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.obj_article_summary .authors {
  font-weight: 500;
  color: #333;
}

.obj_article_summary .pages {
  font-weight: 500;
  color: #777;
}

/* Link ke file PDF */
.obj_article_summary .galleys_links a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(2, 130, 44, 0.9);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.obj_article_summary .galleys_links a:hover {
  background: #ffac05;
  transform: scale(1.05);
}





/* ABOUT */
.page_about {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease;
}

.page_about h1 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

.page_about p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.page_about strong {
  color: #333;
}

.page_about a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page_about a:hover {
  text-decoration: underline;
}

/* Breadcrumb juga diperbagus */
.cmp_breadcrumbs {
  margin: 20px 0 40px 0;
  font-size: 16px;
  color: #777;
}

.cmp_breadcrumbs a {
  color: #007bff;
  text-decoration: none;
}

.cmp_breadcrumbs a:hover {
  text-decoration: underline;
}

/* Animasi masuk */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}







/* CONTACT */
.page_contact {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease;
}

.page_contact h1 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(2, 97, 34, 0.9);
}

.contact_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact {
  padding: 10px 0;
  transition: transform 0.3s ease;
}

.contact:hover {
  transform: translateY(-5px);
}

.contact h3 {
  font-size: 26px;
  font-weight: 700;
  color: rgba(2, 97, 34, 0.9);
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(2, 97, 34, 0.9);
  padding-bottom: 8px;
}

.contact .name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact .affiliation {
  font-size: 20px;
  margin-bottom: 10px;
  color: #555;
}

.contact .phone, .contact .email {
  font-size: 20px;
  margin: 10px 0;
}

.contact .label {
  font-weight: 600;
  color: #333;
  margin-right: 5px;
}

.contact a {
  color: rgba(2, 97, 34, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* Address */
.address {
  grid-column: span 2;
  font-size: 20px;
  color: #444;
  line-height: 1.7;
  padding: 10px 0;
}


/* Breadcrumb juga diperbagus */
.cmp_breadcrumbs {
  margin: 20px 0 40px 0;
  font-size: 16px;
  color: #777;
}

.cmp_breadcrumbs a {
  color: rgba(2, 97, 34, 0.9);
  text-decoration: none;
}

.cmp_breadcrumbs a:hover {
  text-decoration: underline;
}

/* Animasi fadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}






/* HOME */
.page {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  font-family: 'Times', serif; /* FONT UNTUK HALAMAN STATIS */
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  bottom: 90px;
}

.page h1{
  font-family: 'Times New Roman', Times, serif;
}

.page_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #3f44ffff;
  position: relative;
  text-align: center;
}

.page_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #3f44ffff;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page p {
  margin-bottom: 30px;
  text-align: justify;
}

.page strong {
  color: #3f44ffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page strong:hover {
  color: rgb(10, 12, 79);
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.page em {
  color: #555;
  font-style: italic;
  transition: all 0.3s ease;
}

.page em:hover {
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .page {
    font-size: 18px;
    padding: 20px;
    margin: 30px 10px;
  }

  .page_title {
    font-size: 28px;
  }
}


/* TOMBOL BLOCK */
.content p a {
  display: inline-block !important;
  padding: 15px 30px !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg,#4000ff, #026e18) !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s ease !important;
  text-align: center !important;
}

.content p a:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
  background: linear-gradient(135deg, rgba(4, 195, 68, 0.9), #014408) !important;
}



/* TOMBOL SUBMISSION */
.block_make_submission_link {
  display: inline-block !important;
  padding: 15px 30px !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg,#ff6a00, #ee0979) !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s ease !important;
  text-align: center !important;
}

.block_make_submission_link:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
  background: linear-gradient(135deg, rgba(4, 195, 68, 0.9), #014408) !important;
}


.block_make_submission_link {
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* TOMBOL LOGIN DAN REGISTER */
.cmp_notification {
  text-align: center;
  font-size: 18px;
  margin: 30px 0;
  background-color: rgb(246, 246, 246);
}

.cmp_notification a {
  display: inline-block;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}

.cmp_notification a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 219, 109, 0.4);
  background: linear-gradient(135deg, rgba(4, 195, 68, 0.9), #014408);
  backdrop-filter: blur(4px);
}




/* SEMBUNYIKAN OJS */
img[src*="ojs_brand.png"] {
  display: none !important;
}








/* Styling dasar galley links */
.galleys_links {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.galleys_links li {
  margin-bottom: 15px;
}

/* Styling untuk setiap link PDF */
.galleys_links a.obj_galley_link {
  display: block;
  padding: 15px 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3f44ffff, #3dda2cff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Efek garis bawah animasi */
.galleys_links a.obj_galley_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  transition: left 0.4s ease;
}

/* Hover animasi */
.galleys_links a.obj_galley_link:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.galleys_links a.obj_galley_link:hover::after {
  left: 0;
}







/* === TABEL GOOGLE SCHOLAR === */
.data-table-container table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  cursor: pointer;
}

.data-table-container th,
.data-table-container td {
  padding: 12px 16px;
  text-align: left;
}

.data-table-container th {
  background-color: #c8f8d7;
  color: #047857;
}

.data-table-container tr:hover {
  background-color: #f1f8f5;
  transition: background-color 0.3s ease;
}








/* === CHART GOOGLE SCHOLAR === */

.chart-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #01470a;
  text-align: center;
}

.y-axis-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 200px;
  justify-content: space-between;
  font-size: 12px;
  margin-right: 10px;
  float: left;
  color: #006430;
}


.bars-wrapper {
  display: flex;
  align-items: flex-end;
  height: 200px;
  gap: 8px;
  margin-left: -40px; /* MENGATUR LEBAR */
  padding-bottom: 10px;
}

.bar {
  width: 30px;
  background: linear-gradient(135deg, #3dda2cff, #3f44ffff);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
}

.bar:hover {
  transform: scaleY(1.1);
  box-shadow: 0 4px 10px #02e834;
}

/* Tooltip angka */
.bar::after {
  content: attr(data-count);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background-color: #03bf3f;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.bar:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}

.bar-label {
  font-size: 8px;
  text-align: center;
  margin-top: -2px;
  color: #02420f;
}

.x-axis-line {
  height: 1px;
  background-color: #ccc;
  margin-top: 8px;
  margin-left: 50px;
}
