 
/* =========================================================
   JODMS CSS
   ========================================================= */
/* =========================================================
   JODMS - Modern OJS Default Theme
   Journal of Development and Management Science
   Clean International Academic Style
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */


body {
    background: #eef2f7;
    color: #2b2b2b;
    font-family:
        "Inter",
        "Segoe UI",
        "Helvetica Neue",
        Arial,
        sans-serif;

    line-height: 1.7;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.pkp_structure_page {
    max-width: 1336px;
    width: 100%;

    margin: 0 auto;

    background: #ffffff;

    box-shadow: 0 0 30px rgba(0,0,0,0.04);
}


/* =========================================================
   HEADER
   ========================================================= */

.pkp_structure_head {
    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


/* =========================================================
   HEADER LOGO
   ========================================================= */

.pkp_site_name {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pkp_site_name img {
    max-height: 95px;

    width: auto;

    transition: all 0.3s ease;
}

/* desktop */
@media (min-width: 1200px) {

    .pkp_site_name img {
        max-height: 110px;
    }

}

/* mobile */
@media (max-width: 768px) {

    .pkp_site_name img {
        max-height: 60px;
    }

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.pkp_navigation_primary_wrapper {
    border-top: 1px solid #f1f5f9;
}

.pkp_navigation_primary > li > a {
    color: #1e293b;

    font-weight: 600;

    font-size: 14px;

    transition: all 0.25s ease;
}

.pkp_navigation_primary > li > a:hover {
    color: #0f4c81;

    background: transparent;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.pkp_site_nav_toggle {
    background: #0f4c81;

    border-radius: 6px;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.pkp_structure_content {
    padding-top: 25px;
    padding-bottom: 25px;
}

.pkp_structure_main {
    padding-right: 20px;
}


/* =========================================================
   HOMEPAGE ABOUT
   ========================================================= */

.homepage_about {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding: 28px;

    margin-bottom: 30px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.page_index_journal h2 {
    font-size: 24px;

    font-weight: 700;

    color: #0f172a;

    margin-bottom: 20px;
}


/* =========================================================
   CURRENT ISSUE
   ========================================================= */

.current_issue {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding: 28px;

    margin-bottom: 30px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


/* =========================================================
   ISSUE COVER
   ========================================================= */

.obj_issue_toc .cover img {
    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.obj_issue_toc .cover img:hover {
    transform: translateY(-3px);
}


/* =========================================================
   ARTICLE CARDS
   ========================================================= */

.obj_article_summary {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    padding: 22px;

    margin-bottom: 20px;

    transition: all 0.25s ease;

    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.obj_article_summary:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}


/* =========================================================
   ARTICLE TITLES
   ========================================================= */

.obj_article_summary .title a {
    color: #0f172a;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.5;
}

.obj_article_summary .title a:hover {
    color: #0f4c81;

    text-decoration: none;
}


/* =========================================================
   ARTICLE META
   ========================================================= */

.obj_article_summary .meta {
    color: #64748b;

    font-size: 14px;

    margin-top: 10px;
}


/* =========================================================
   PDF BUTTON
   ========================================================= */

.obj_galley_link {
    background: #0f4c81 !important;

    color: #ffffff !important;

    border-radius: 8px;

    padding: 8px 16px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.obj_galley_link:hover {
    background: #0b3a61 !important;

    transform: translateY(-1px);
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.pkp_structure_sidebar {
    padding-left: 15px;
}


/* =========================================================
   SIDEBAR BLOCKS
   ========================================================= */

.pkp_block {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    margin-bottom: 24px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


/* =========================================================
   SIDEBAR TITLES
   ========================================================= */

.pkp_block .title {
    background: #0f4c81;

    color: #ffffff;

    padding: 14px 18px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* =========================================================
   SIDEBAR CONTENT
   ========================================================= */

.pkp_block .content {
    padding: 18px;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: #0f4c81;

    transition: all 0.2s ease;
}

a:hover {
    color: #0b3a61;

    text-decoration: none;
}


/* =========================================================
   BUTTONS
   ========================================================= */

button,
.cmp_button,
.btn {
    border-radius: 8px !important;

    transition: all 0.25s ease;
}


/* =========================================================
   FORMS
   ========================================================= */

input,
textarea,
select {
    border-radius: 8px !important;

    border: 1px solid #d1d5db !important;
}


/* =========================================================
   ANNOUNCEMENTS
   ========================================================= */

.cmp_announcements {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding: 28px;

    margin-bottom: 30px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


/* =========================================================
   FOOTER
   ========================================================= */

.pkp_structure_footer_wrapper {
    background: #f8fafc;

    border-top: 1px solid #e5e7eb;

    margin-top: 40px;
}

.pkp_structure_footer {
    padding-top: 30px;
    padding-bottom: 20px;
}


/* =========================================================
   FOOTER TEXT
   ========================================================= */

.pkp_footer_content {
    color: #475569;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PKP FOOTER LOGO
   ========================================================= */

.pkp_brand_footer {
    text-align: right;

    padding-top: 10px;
}

.pkp_brand_footer img {
    max-height: 32px;

    width: auto;

    opacity: 0.45;

    transition: all 0.3s ease;
}

.pkp_brand_footer img:hover {
    opacity: 0.85;
}


/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.dropdown-menu {
    border-radius: 10px;

    border: 1px solid #e5e7eb;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


/* =========================================================
   TABLES
   ========================================================= */

table {
    width: 100% !important;
}


/* =========================================================
   IMAGE STYLE
   ========================================================= */

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;

    border-radius: 10px;
}


/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .pkp_structure_page {
        max-width: 100%;
    }

    .pkp_structure_main {
        padding-right: 0;
    }

    .pkp_structure_sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

}


@media (max-width: 768px) {

    .homepage_about,
    .current_issue,
    .cmp_announcements {
        padding: 20px;
    }

    .obj_article_summary {
        padding: 18px;
    }

    .obj_article_summary .title a {
        font-size: 18px;
    }

    .pkp_block .content {
        padding: 15px;
    }

    .pkp_brand_footer {
        text-align: center;

        margin-top: 20px;
    }

    .pkp_brand_footer img {
        max-height: 24px;
    }

}


/* =========================================================
   RIGHT SIDEBAR
   ========================================================= */

.pkp_structure_sidebar {

    padding-left: 24px;

}


/* =========================================================
   SIDEBAR BLOCK
   ========================================================= */

.pkp_block {

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    margin-bottom: 24px;

    overflow: hidden;

    box-shadow: 0 2px 12px rgba(0,0,0,0.04);

    transition: all 0.25s ease;

}

.pkp_block:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 28px rgba(0,0,0,0.07);

}


/* =========================================================
   SIDEBAR TITLE
   ========================================================= */

.pkp_block .title {

    background: linear-gradient(
        135deg,
        #0f4c81,
        #1769aa
    );

    color: #ffffff;

    padding: 14px 18px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.3px;

    text-transform: uppercase;

}


/* =========================================================
   SIDEBAR CONTENT
   ========================================================= */

.pkp_block .content {

    padding: 18px;

    font-size: 14px;

    line-height: 1.8;

    color: #475569;

}


/* =========================================================
   SIDEBAR LINKS
   ========================================================= */

.pkp_block .content a {

    color: #0f4c81;

    font-weight: 500;

    transition: all 0.2s ease;

}

.pkp_block .content a:hover {

    color: #0b3a61;

    padding-left: 3px;

}


/* =========================================================
   SIDEBAR LIST
   ========================================================= */

.pkp_block ul {

    padding-left: 18px;

}

.pkp_block li {

    margin-bottom: 8px;

}


/* =========================================================
   SIDEBAR IMAGES
   ========================================================= */

.pkp_block img {

    border-radius: 8px;

    transition: all 0.3s ease;

}

.pkp_block img:hover {

    transform: scale(1.02);

}


/* =========================================================
   MAKE SIDEBAR STICKY
   ========================================================= */

@media (min-width: 1200px) {

    .pkp_structure_sidebar {

        position: sticky;

        top: 20px;

    }

}


/* =========================================================
   INDEXING LOGOS
   ========================================================= */

.pkp_block .content img {

    margin-bottom: 10px;

    opacity: 0.92;

}


/* =========================================================
   LOGIN FORM
   ========================================================= */

.pkp_block input {

    margin-bottom: 12px;

}


/* =========================================================
   ANNOUNCEMENT STYLE
   ========================================================= */

.pkp_block .cmp_announcements {

    box-shadow: none;

    border: none;

    padding: 0;

}


/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .pkp_structure_sidebar {

        padding-left: 0;

        margin-top: 30px;

    }

}


@media (max-width: 768px) {
    .pkp_block .title {
        font-size: 5px;
        padding: 5px 5px;
    }
    .pkp_block .content {
        padding: 5px;
    }
}


@media (min-width: 992px) {
  .pkp_block {
    padding: 1.143rem;
  }
}

.pkp_block {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.pkp_block .content {
  padding: 5px;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.pkp_block .title {
  background: linear-gradient( 135deg, #17396f, #1769aa );
  color: #ffffff;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* =========================================================
   JODMS QUICK MENU
   ========================================================= */

.jodms-menu {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.jodms-menu a {

    display: block;

    background: linear-gradient(
        135deg,
        #0f4c81,
        #1769aa
    );

    color: #ffffff !important;

    text-align: center;

    padding: 14px 16px;

    border-radius: 10px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

}

.jodms-menu a:hover {

    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #0b3a61,
        #14558a
    );

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);

}

/* =========================================================
   JODMS SIDEBAR TABLE
   ========================================================= */

.jodms-sidebar-table {

    width: 100%;

    border-collapse: separate;

    border-spacing: 0 10px;

}


/* cell */

.jodms-sidebar-table td {

    padding: 0;

}


/* menu link */

.jodms-sidebar-table a {

    display: block;

    background: linear-gradient(
        135deg,
        #0f4c81,
        #1769aa
    );

    color: #ffffff !important;

    text-align: center;

    padding: 5px 5px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

}


/* hover */

.jodms-sidebar-table a:hover {

    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #0b3a61,
        #14558a
    );

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);

}


/* mobile */

@media (max-width: 768px) {

    .jodms-sidebar-table a {

        padding: 11px 12px;

        font-size: 13px;

    }

}

/* =========================================================
   JODMS SIDEBAR TABLE MENU
   Inspired by Indonesian Journal Style
   ========================================================= */

.jodms-menu-table {

    width: 100%;

    border-collapse: separate;

    border-spacing: 0 6px;

}


/* remove default td padding */

.jodms-menu-table td {

    padding: 0;

}


/* menu links */

.jodms-menu-table a {

    display: block;

    background: #003366;

    color: #ffffff !important;

    padding: 10px 14px;

    line-height: 12px;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    border: 1px solid #f5f5f5;

    border-radius: 6px;

    transition: all 0.25s ease;

}


/* hover */

.jodms-menu-table a:hover {

    background: #004b99;

    transform: translateX(2px);

    box-shadow: 0 4px 14px rgba(0,0,0,0.08);

}


/* icons */

.jodms-menu-table i {

    width: 20px;

    text-align: center;

    margin-right: 6px;

}


/* mobile */

@media (max-width: 768px) {

    .jodms-menu-table a {

        padding: 9px 12px;

        font-size: 13px;

    }

}