/* --- 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://static.vecteezy.com/system/resources/previews/011/152/977/non_2x/baroque-geometric-ornament-expensive-seamless-pattern-for-wallpaper-on-the-wall-and-textiles-thin-elegant-lines-sea-wave-color-background-vector.jpg');
    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 */
    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: #0f6f6d; /* Tosca gelap */
    border: none;
    border-radius: 0;
    padding: 0 !important;
    margin-bottom: 18px;
}

/* ===============================
   BLOCK TITLE
================================ */
.pkp_block .title {
    background: #0b5f5d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 15px;
    margin: 0;
    border-bottom: 2px solid #f1c40f;
}

/* ===============================
   BLOCK CONTENT RESET
================================ */
.pkp_block .content {
    padding: 0;
    margin: 0;
}

/* ===============================
   A & P SAME VISUAL BEHAVIOR
================================ */
.pkp_block a,
.pkp_block p.MsoNormal {
    display: block;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    margin: 0;
    transition: all 0.3s ease;
}

/* Remove default Word styles */
.pkp_block p.MsoNormal,
.pkp_block p.MsoNormal * {
    font-family: inherit !important;
    line-height: normal !important;
    background: transparent !important;
}

/* Hover effect (same as <a>) */
.pkp_block a:hover,
.pkp_block p.MsoNormal:hover {
    background: #138d8b;
    padding-left: 22px;
}

/* Make link inside <p> inherit full style */
.pkp_block p.MsoNormal a {
    color: inherit;
    text-decoration: none;
    padding: 0;
    border: none;
}

/* ===============================
   UL / LI MENU
================================ */
.pkp_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_block ul li {
    margin: 0;
}

/* ===============================
   MAKE SUBMISSION BUTTON
================================ */
.block_make_submission_link {
    background: #f1c40f !important;
    color: #0f6f6d !important;
    font-weight: 700;
    text-align: center;
}

.block_make_submission_link:hover {
    background: #f39c12 !important;
    color: #fff !important;
}

/* ===============================
   IMAGE BLOCK (LOGO / INDEXED BY)
================================ */
.pkp_block img {
    display: block;
    max-width: 100%;
    margin: 10px auto;
    padding: 5px;
    background: #ffffff;
    border-radius: 4px;
}

/* --- 6. FOOTER ADJUSTMENT --- */
.pkp_structure_footer  {
    background: #1e5a4d !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: #1e5a4d !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;
}


