/* Journal of Journal Cakrawala of Computer Engineering and Informatics */
/* Developed by Firdaus - (c)2018 */

/* Body-JCCEI*/
/* Developed by Firdaus - (c)2018 */

.pkp_site_name {
    display: none;
}

.pkp_navigation_search_wrapper{
    display: none;
}


/* ===================== DESKTOP ===================== */
.pkp_navigation_user {
   gap: 25px;
   flex-wrap: nowrap;
   
}

h1, h2 {
    font-family: "Arial", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff6802;
    margin: 20px 0 25px 0;
    padding: 10px 14px;
    border-left: 6px solid #2f318b;

    /* Modern style */
    background: linear-gradient(to right, #fff, #fff7f0);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    
    display: none;
}

.pkp_head_wrapper{
   /*border-bottom: 1px solid #c8c8d4;*/
    background-color: #fff;
  
}

.pkp_navigation_user .profile a {
    display: inline-flex;
    align-items: center;
    gap: 3px; /* jarak kecil antara icon dan angka */
    position: relative;
}

/* Atur badge notifikasi */
.pkp_navigation_user .profile .count,
.pkp_navigation_user .profile .pkp_nav_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 2px 6px;
    font-size: 11px;
    line-height: 1;
    border-radius: 10px;

    background: #e63946; 
    color: #fff;

    margin-left: 4px; /* jarak icon → badge */
    position: static !important; /* biar tidak loncat ke atas */
}

.pkp_navigation_user a {
        display: block;
        width: 100%;
        padding: 10px 10px;
        font-size: 16px;
        font-weight: 600;
        color: #ff6802;
        margin-top: 20px;
    }
    
.pkp_navigation_user li > a::after {
    content: none !important;
}
    
/* Style dasar link */
.pkp_navigation_user li a {
    position: relative;
    padding: 0 12px;
    text-decoration: none;
    transition: color 0.25s ease;
    
}

/* Warna teks saat hover */
.pkp_navigation_user li a:hover {
    color: #007bff; /* bisa diganti */
}

/* Garis animasi */
.pkp_navigation_user li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* jarak garis ke teks */
    width: 0%;
    height: 2px;
    background-color: #007bff; /* warna garis */
    transition: width 0.25s ease;
}

/* Saat hover garis muncul */
.pkp_navigation_user li a:hover::after {
    width: 100%;
}

/* ===================== MOBILE ===================== */
@media(max-width: 768px) {

    /* tombol hamburger OJS */
    .pkp_site_nav_toggle {
        display: block !important;
        cursor: pointer;
        padding: 10px;
    }

    /* Paksa menu user jadi kolom di mobile */
    .pkp_navigation_user {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    /* Link style */
    .pkp_navigation_user a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        text-decoration: none !important;
    }

    /* Dropdown di mobile */
    .pkp_navigation_user li ul {
        position: static;
        display: none;
        padding: 10px 15px;
        background: #f7f7f7;
        border-radius: 6px;
        width: 100%;
    }

    .pkp_navigation_user li:hover > ul {
        display: block;
        text-decoration: none !important;
    }
}


/* ===================== DROPDOWN PROFILE ===================== */

/* Container dropdown */
.pkp_navigation_user li.profile {
    position: relative;
}

/* Dropdown UL */
.pkp_navigation_user li.profile > ul {
    position: absolute;
    top: calc(100% + 2px); /* sebelumnya terlalu jauh, sekarang hanya 2px */
    left: 0;

    background: #ffffff;
    padding: 6px 0; /* lebih ramping */
    margin-top: 0; /* hilangkan jarak ekstra */

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);

    display: none;
    z-index: 9999;
}

/* Tampilkan saat hover */
.pkp_navigation_user li.profile:hover > ul {
    display: block;
    margin-top: 0px;
}

/* Style tiap item dropdown */
.pkp_navigation_user li.profile > ul li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: #444 !important;  
    text-decoration: none !important;

    transition: background 0.25s ease, color 0.25s ease;
}

/* Hover item dropdown */
.pkp_navigation_user li.profile > ul li a:hover {
    background: #f1f5f9; /* abu lembut elegan */
    color: #ff6802 !important; 
}

/* Badge di dalam dropdown (jumlah tugas) */
.pkp_navigation_user li.profile > ul li .task_count {
    background: #e63946;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 10px;
    margin-left: 6px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Hilangkan bullet list */
.pkp_navigation_user li.profile > ul li {
    list-style: none;
}

/* Agar tidak menggeser layout */
.pkp_navigation_user li.profile > ul li a::after {
    content: none !important;
}


/* ===================== RESPONSIVE ===================== */
@media(max-width: 768px) {

    /* Dropdown di mobile jadi full width */
    .pkp_navigation_user li.profile > ul {
        position: static !important;
        display: none;
        width: 100% !important;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding-left: 10px;
    }

    .pkp_navigation_user li.profile:hover > ul {
        display: block;
    }

    .pkp_navigation_user li.profile > ul li a {
        padding: 12px 5px;
        font-size: 15px;
    }
}

/* Journal of Journal Cakrawala of Computer Engineering and Informatics */
/* Developed by Firdaus - (c)2018 */

/* Body-JCCEI*/
/* Developed by Firdaus - (c)2018 */

.pkp_site_name {
    display: none;
}

/*.pkp_head_wrapper{
   
    background-color: red; 
  
}*/

.has_site_logo .pkp_head_wrapper {
       padding-top: 5px;
}

.pkp_structure_content {
        padding-top: 5px;
}

.pkp_page_index .additional_content {
   padding-top:0px;
   padding-left:0px;
   padding-right:10px;
   border-top: none;
}

.pkp_search_desktop .search_prompt {
    margin: 0 1em;
    padding: 10px 0 8px;
    border-bottom: 2px solid #a7a7a700;
    font-size: 15px; 
	color: #4a00a6;
	font-weight: bold;
    text-decoration: none;
}

.page_search .search_results .obj_article_summary {
    margin: 50px 0
}

.pkp_navigation_primary_row {
	border-top: 3px solid #d000fe3;
	border-bottom:1px solid #d000fe3; 
}

.pkp_navigation_primary>li>a {
    margin: 0 1em;
    padding: 10px 0 8px;
    border-bottom: 2px solid #a7a7a700;
    font-size: 15px; 
	Color: #4a00a6;
	font-weight: bold;
    text-decoration: none;
}

.pkp_page_index .additional_content {
   padding-top: 10px;
   border-top: none; 
}

.pkp_structure_main:before,.pkp_structure_main:after {
   content:'';
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   width: 1px;
   background: #c2202000
}

.obj_issue_toc .galleys,.obj_issue_toc .section {
   margin:1px -30px;
   padding-top: 0px;
}

.obj_issue_toc .galleys>h2,.obj_issue_toc .section>h2,.obj_issue_toc .galleys>h3,.obj_issue_toc .section>h3 {
   display: inline-block;
   position: relative;
   left: -15px;
   margin-top: 0;
   padding: 0 15px;
   font-size: 16px;
   font-weight: 400;
   line-height: 30px; 
   font-weight: bold;
   color:#240051;
}

/* Drop-down Menu - JEREL*/
/* Developed by Rahmat Azis Nabawi - (c)2018 */

.pkp_block {
    padding: 10px;
}

.pkp_block .content p {
    line-height: 10px;
    text-align: center; 
}

.pkp_block .content ul li {
    line-height: 20px;
    padding: 0px;
}



.pkp_brand_footer{
    display: none;
	background: #ebdaf4;
}

.homepage_about{
    text-align: justify;
}

.pkp_structure_footer_wrapper {
	background: #fff;
	padding: 0px;
	padding-left: 0px !important ; 
}


.obj_article_details .authors {
    text-align: justify; 
	color: #4a00a6; 
}

.obj_article_details .affiliation {
    text-align: justify;
}

.obj_article_details .keywords {
    text-align: justify; 
}

.obj_article_details .abstract {
    text-align: justify; 
}
.obj_article_details .references {
    text-align: justify; 
}

.obj_article_details .item.citation {
    text-align: justify; 
}

.obj_article_details .item.issue {
    text-align: justify; 
}

.obj_article_details .item.copyright {
    text-align: justify; 
}




/* ===== JC-CEI Sidebar Menu - Modern Soft Style ===== */

.jccei-nav {
    width: 100%;
    font-family: "Segoe UI", sans-serif;
}

/* MAIN MENU LIST */
.jccei-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jccei-menu > li {
    position: relative;
    margin-bottom: 10px;
}

/* MAIN MENU STYLE */
.jccei-menu > li > a {
    display: block;
    padding: 11px 14px;
    background: #ffffff;
    color: #2f318b;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;

    /* Soft shadow modern */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

    transition: all 0.3s ease;
}

/* HOVER STYLE */
.jccei-menu > li > a:hover {
    background: #ff6802;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(255,104,2,0.4);
}

/* SUBMENU (dropdown) */
.jccei-submenu {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;

    /* Hidden with smooth animation */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-5px);
    transition: all 0.55s ease; /* smooth delay */
}

/* SHOW SUBMENU on hover */
.jccei-menu > li:hover > .jccei-submenu {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0px);
}

/* SUBMENU ITEMS */
.jccei-submenu li a {
    display: block;
    padding: 8px 14px 8px 22px;
    font-size: 14px;
    text-decoration: none;
    color: #2f318b;
    background: #ffffff;

    border-left: 3px solid #ff6802;

    transition: all 0.25s ease;
}

.jccei-submenu li a:hover {
    background: rgba(255,104,2,0.12);
    color: #ff6802;
    padding-left: 28px;
}

/* spacing tiap submenu item */
.jccei-submenu li {
    margin-bottom: 3px;
}

/* ===== Modern Breadcrumb JCCEI ===== */

.cmp_breadcrumbs12 {
    font-family: "Segoe UI", sans-serif;
    margin: 10px 0 18px 0;
    padding: 10px 14px;
    background: red !important;
    border-radius: 8px;
    width: 100%;

    /* Soft shadow agar modern */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    
    color: #2f318b !important;
    font-weight: 500;
}
.cmp_breadcrumbs {
    font-family: "Segoe UI", sans-serif;
    margin: 10px 0 18px 0;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 8px;
    width: 100%;

    /* Soft shadow agar modern */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.cmp_breadcrumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

/* Breadcrumb item */
.cmp_breadcrumbs ol li {
    display: flex;
    align-items: center;
    color: #2f318b;
    font-weight: 500;
}

/* Link style */
.cmp_breadcrumbs ol li a {
    text-decoration: none;
    color: #2f318b;
    transition: color 0.3s ease;
}

/* Hover */
.cmp_breadcrumbs ol li a:hover {
    color: #ff6802;
}

/* Separator */
.cmp_breadcrumbs .separator {
    margin: 0 6px;
    color: #ff6802;
    font-weight: bold;
    opacity: 0.7;
}

/* Current page */
.cmp_breadcrumbs .current span {
    color: #ff6802;
    font-weight: 600;
}


/* === FORM LOGIN UTAMA (SUPER ELEGAN) === */
.page_login .cmp_form {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;

  /* Shadow elegan — lebih soft */

  margin: 0;
}

/* === LABEL === */
.page_login .cmp_form label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

/* === INPUT — gaya akademik/kurasi jurnal === */
.page_login .cmp_form input[type="text"],
.page_login .cmp_form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  height: 40px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 10px;

  color: #111827;
  transition: 0.18s;
}

.page_login .cmp_form input[type="text"]:focus,
.page_login .cmp_form input[type="password"]:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.15);
}

/* === FORGOT PASSWORD === */
.page_login .password label a {
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;

  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.page_login .password label a:hover {
  text-decoration: underline;
}

/* === CHECKBOX REMEMBER === */
.page_login .remember.checkbox {
  margin: 14px 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.page_login input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

/* === BUTTON WRAPPER === */
.page_login .buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

/* === LOGIN BUTTON (premium) === */
.page_login button.submit {
  background: #2563eb;
  border: none;

  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;

  color: #fff;
  border-radius: 10px;
  cursor: pointer;

  transition: 0.18s ease;
}

.page_login button.submit:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

/* === REGISTER BUTTON — soft outline style === */
.page_login .buttons .register {
  padding: 10px 18px;
  border-radius: 10px;

  border: 1px solid #cbd5e1;
  color: #1e3a8a;
  text-decoration: none;
  background: #f8fafc;

  font-size: 14px;
  font-weight: 500;
  transition: 0.18s ease;
}

.page_login .buttons .register:hover {
  background: #eef2ff;
  border-color: #94a3b8;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 520px) {
  .page_login .cmp_form {
    padding: 22px;
  }

  .page_login .buttons {
    flex-direction: column;
  }

  .page_login button.submit,
  .page_login .buttons .register {
    width: 100%;
    text-align: center;
  }
}


@media(max-width: 768px) {
  div[style*="display: grid;"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .pkp_site_name {
        display: block !important;
        color: #ff6802 !important;
    }
   .pkp_site_name a.is_text {
    color: #ff6802;          /* Warna teks sitename */
    font-weight: bold;       /* Tebal */
    text-decoration: none;   /* Hilangkan garis bawah */
}

/* ===== Toggle Button ===== */
.pkp_site_nav_toggle {
    color: #ff6802;          /* Warna ikon teks toggle */
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Hover Toggle */
.pkp_site_nav_toggle:hover {
    background: #ff6802;     /* Latar saat hover */
    color: #fff;             /* Teks jadi putih */
}
h1{
    display: none;
}
}


