.pkp_structure_sidebar {
  padding: 0px;                  
  font-family: "Helvetica", sans-serif; 
  font-size: 14px;
  color: #333;                    
  box-sizing: border-box;
}

.pkp_structure_sidebar {
  border-left: 1px solid red;  
}

.pkp_structure_sidebar a {
  position: relative;
  display: block;
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  overflow: hidden;
  transition: color 0.2s ease, padding-left 0.2s ease;
  z-index: 1;
}

.pkp_structure_sidebar a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #e9ecef; 
  transition: width 0.3s ease;
  z-index: -1; 
}

.pkp_structure_sidebar a:hover::before {
  width: 100%; 
}

.pkp_structure_sidebar a:hover {
  color: #0056b3; 
  padding-left: 8px;
}


.pkp_block .title {
  width: 100%;
  text-transform: capitalize;
  font-weight: normal; 
  font-family: 'Segoe UI', sans-serif;  
  background-color: #F35122;
  padding-bottom: 8px;
  padding-top: 8px;
  color: yellow;
  text-align: center;
  margin: 1px solid #ad0000;
}

.pkp_structure_sidebar .pkp_block {
  margin-bottom: 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.pkp_structure_sidebar img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  border: 1px solid #ccc; 
  border-radius: 6px;      
  box-shadow: 0 4px 10px grey; 
  background-color: #fff;  
  padding: 4px;            
}

.pkp_structure_sidebar table {
  margin-bottom: -5px;
  display: block;
  padding: 3px 0;
  padding-left: 6px;
  text-decoration: none; 
  color: white; 
  background-color: #FEF0E3; 
  border-left: 10px solid #AD0000; 
}

/* Tambahkan garis antar baris */
.pkp_structure_sidebar table tr {
  border-bottom: 2px solid #AD0000; 
}

.pkp_structure_sidebar table td,
.pkp_structure_sidebar table th {
  padding: 1px 1px;
  border: 1px solid #AD0000; 
}


