/* ===== FONT UTAMA ===== */

body, 
.pkp_page, 
.pkp_structure_page {
  font-family: Aptos, Poppins, sans-serif;
}



/* ===== SIDEBAR CUSTOM ===== */

/* Sidebar utama */
.sidebar {
  font-family: Aptos,Arial, sans-serif;
}

/* Card box */
.box {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* Hover card */
.box:hover {
  transform: translateY(-2px);
}

/* Header card */
.box-header {
  padding: 10px;
  background: #a91c22;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}


/* Menu list */
.menu {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.menu li {
  border-bottom: 1px solid #eee;
}

.menu li:last-child {
  border-bottom: none;
}

.menu li a {
  display: block;
  padding: 1px 14px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;

}

.menu li a:hover {
  background: #fefff2;
  color: #23b832;
  padding-left: 16px;
}

/* Center */
.center {
  text-align: center;
  padding: 15px;
}

/* Image */
.img-full {
  width: 100%;
  max-width: 270px;
}

/* Tools (logo grid) */
.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 10px 10px 18px 10px;
}

.tools img {
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
  display: block;
}

/* hover efek image sidebar*/
.tools img:hover {
  transform: translateY(-2px); /* naik sedikit */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* bayangan */
  transition: 0.2s;
}

