body {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #3a1b20;
    background-color: #ffffff;
}

/* Judul halaman */
h2, h5, h4, h6 {
    font-family: Arial, sans-serif;
    color: #6b1f2b;
    font-weight: 450;
}

/* Paragraf artikel */
p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a2a30;
}

/* Link */
a {
    color: #6b1f2b;
    text-decoration: none;
}

a:hover {
    color: #4a141d;
    text-decoration: underline;
}

/* Box konten OJS */
.pkp_block, .pkp_structure_main {
    font-family: Arial, sans-serif;
}

/* Sidebar widget */
.pkp_block {
    background: #faf6f7;
    border: 1px solid #ead6da;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* subtle shadow */
    transition: all 0.2s ease;
}

/* Hover effect (lebih hidup tapi tetap halus) */
.pkp_block:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Button */
button, .pkp_button {
    background: #6b1f2b;
    color: #ffffff;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); /* subtle shadow button */
    transition: all 0.2s ease;
}

button:hover, .pkp_button:hover {
    background: #4a141d;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}