/* Logo */
.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Hilangkan brand footer OJS */
.pkp_brand_footer {
    display: none;
}
/* =========================
   SIDEBAR POLICIES HOVER
========================= */

/* link default */
.sidebar-policies a {
  display: block;
  color: #2c74b3;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover pada baris */
.sidebar-policies li:hover {
  background: #e6f0f8;
}

/* warna teks saat hover */
.sidebar-policies li:hover a {
  color: #1b4f7a;
}

/* opsional: efek geser halus */
.sidebar-policies li:hover a {
  padding-left: 4px;
}
.sidebar-policies li:hover {
  background: linear-gradient(90deg, #e6f0f8, #f4f8fc);
}
/* =========================
   IMAGE SIDEBAR (TEMPLATE)
========================= */

/* container hover */
.sidebar-template li {
  transition: all 0.3s ease;
}

/* hover background */
.sidebar-template li:hover {
  background: #e6f0f8;
}

/* efek zoom halus */
.sidebar-template img {
  transition: transform 0.3s ease;
}

/* zoom saat hover */
.sidebar-template li:hover img {
  transform: scale(1.05);
}