.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}
.pkp_site_name .is_img img {
  max-height: 200px !important;
}
.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}
.pkp_structure_page {
  margin-top: 20px !important;
  margin-bottom: 20 !important;
  padding-bottom: 20 !important;
}

/* Sidebar Wrapper */
.pkp_structure_sidebar {
  background-color: #f5f5f5;
  padding: 20px;
}

/* Sidebar Block Titles */
.pkp_structure_sidebar .block_title {
  color: #001f3f; /* Navy text for section title */
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Sidebar Links Style */
.pkp_structure_sidebar .content li {
  list-style: none;
  margin-bottom: 10px;
}

.pkp_structure_sidebar .content li a {
  display: block;
  background-color: #1f4e8c; /* Blue background */
  color: #ffffff !important; /* White text */
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

/* Hover Effect */
.pkp_structure_sidebar .content li a:hover {
  background-color: #003366; /* Darker blue on hover */
  transform: translateY(-1px);
}

/* Active Sidebar Item (Optional, if you want highlight for current page) */
.pkp_structure_sidebar .content li a.active {
  background-color: #4b69b8;
  color: #fff;
}