/* --- 1. PAGE BACKGROUND (SOFT BLUE) --- */
/* This colors the sides of the page while keeping the content container white */
/* body {
    background-color: #1c6091 !important; /* Soft Blue side background */
    /* color: #333; */
    /* text-align: justify; */
/* } */

body {
    background-image: url('https://www.shutterstock.com/shutterstock/videos/1016304334/thumb/6.jpg?ip=x480');
    background-repeat: repeat;
    background-size: 200px auto;   /* width 500px, height otomatis */
    background-position: top left;

    color: #333;
    text-align: justify !important;
}



.pkp_structure_page {
    background-color: #ffffff !important; /* Keeps the center content white */
    max-width: 1200px; /* Standard width */
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* --- 2. HEADER IMAGE ADJUSTMENT --- */
/* Fixes logo/header stretching or misalignment */
.pkp_site_name_wrapper img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 10px auto;
}

/* --- 3. UPPER TOP BAR (HOME, DAFTAR, LOGIN) --- */
/* Styles the small links at the very top right */
.pkp_navigation_user > li > a {
    color: #ffffff !important;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px !important;
    border-radius: 4px;
    margin-left: 5px;
    transition: 0.3s;
}

.pkp_navigation_user > li > a:hover {
    background: #ffcc00 !important; /* Gold on hover */
    color: #000 !important;
}

/* --- 4. PRIMARY MENU NAVIGATION --- */
.pkp_navigation_primary_row {
    background-color: #22b1bb !important; /* Solid Darker Blue */
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-left: 50px;;
    padding-right: 50px;;
}

.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkp_navigation_primary > li > a:hover {
    background-color: #003d80 !important;
}





/* ===============================
   SIDEBAR CONTAINER
================================ */
.pkp_structure_sidebar {
    background: transparent;
}

/* ===============================
   GLOBAL BLOCK STYLE
================================ */
.pkp_block {
    background: #0F2854;
    border: none;
    border-radius: 0;
    padding: 0 !important;
    margin-bottom: 18px;
}

/* ===============================
   BLOCK TITLE
================================ */
.pkp_block .title {
    background: #0b1f44;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 15px;
    margin: 0;
    border-bottom: 2px solid rgba(255,255,255,0.25);
}

/* ===============================
   BLOCK CONTENT RESET
================================ */
.pkp_block .content {
    padding: 0;
    margin: 0;
}

/* ===============================
   WORD (MSO) CLEANUP — VERY IMPORTANT
================================ */
.pkp_block p.MsoNormal,
.pkp_block p.MsoNormal * {
    background: transparent !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

/* ===============================
   P & A STYLE
================================ */
.pkp_block p,
.pkp_block a {
    display: block;
    color: #ffffff !important;
    padding: 10px 15px;
    margin: 0;
    /* border-bottom: 1px solid rgba(255,255,255,0.22); */
    transition: all 0.3s ease;
}

/* Links inside <p> */
.pkp_block p a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ===============================
   HOVER EFFECT
================================ */
.pkp_block p:hover,
.pkp_block a:hover {
    background: #17356f;
    padding-left: 22px;
}

/* ===============================
   UL / LI MENU (OJS DEFAULT BLOCKS)
================================ */
.pkp_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_block ul li a {
    color: #ffffff !important;
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.22);
}

.pkp_block ul li a:hover {
    background: #17356f;
    padding-left: 22px;
}

/* ===============================
   INDEXED BY – IMAGE NORMALIZATION
================================ */
#customblock-indexed-by .content p {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    padding: 12px;
}

#customblock-indexed-by img {
    width: 110px;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}



/* ===============================
   MAKE A SUBMISSION – FIX COLORS
================================ */
.pkp_block.block_make_submission {
    background: #ffffff !important;
    border: 1px solid #0F2854;
}

.pkp_block.block_make_submission .content {
    padding: 12px;
}

/* Button / link */
.pkp_block.block_make_submission a.block_make_submission_link {
    background: #0F2854 !important;
    color: #ffffff !important;
    display: block;
    text-align: center;
    padding: 12px 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
}

/* Hover */
.pkp_block.block_make_submission a.block_make_submission_link:hover {
    background: #17356f !important;
}

















/* --- 6. FOOTER ADJUSTMENT --- */
.pkp_structure_footer  {
    background: #171729 !important; /* Dark Slate footer */
    color: #ffffff !important;
    /* padding: 30px 20px !important; */
    border-top: 5px solid #0056b3;
    text-align: center!important;
}
.pkp_structure_footer_wrapper {
    background: #171729 !important; /* Dark Slate footer */
    text-align: center;
}

.pkp_structure_footer a {
    color: #5af8f8 !important; /* Yellow links in footer */
}

/* Hide the "Powered by OJS" for a cleaner look if desired */
.pkp_brand_footer {
    display: none;
}


