/* ===========================
   SIDEBAR NAVIGATION CUSTOM
   =========================== */
.sidebar {
  width: 260px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 25px 0;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.sidebar-header {
  background: #133b2f;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px 0 0 0;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar ul li {
  border-bottom: 1px solid #eee;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.sidebar ul li a i {
  margin-right: 10px;
  color: #133b2f;
  width: 20px;
  text-align: center;
}

.sidebar ul li a:hover {
  background: #f0f0f0;
  color: #133b2f;
}

/* ===========================
   HEADER LOGO
   =========================== */
.pkp_site_name .is_img img {
  display: inline-block;
  max-height: 120px;   /* batasi tinggi logo */
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===========================
   FOOTER CUSTOM
   =========================== */
.pkp_footer_content {
  float: left;
  width: 70%;
  padding: 20px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.pkp_brand_footer {
  float: right;
  width: 30%;
  padding: 20px 0;
  text-align: right;
}

.pkp_brand_footer img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.pkp_brand_footer img:hover {
  opacity: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    border-radius: 10px;
  }

  .pkp_footer_content,
  .pkp_brand_footer {
    float: none;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .pkp_brand_footer img {
    max-height: 50px;
  }
}
