/* ===== MENÚ LATERAL PERSONALIZADO – OJS DEFAULT ===== */

.sidebar-menu {
  width: 100%;
  font-family: 'Noto Sans', system-ui, sans-serif;
}

.sidebar-title {
  background: linear-gradient(135deg, #0f2a44, #1f5fa3);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.pkp_block .sidebar-menu a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #1f5fa3, #4fa3e3);
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.pkp_block .sidebar-menu a:hover {
  transform: translateX(6px);
  background: linear-gradient(135deg, #40957f, #FFDF20);
}

.pkp_block .sidebar-menu a::after {
  content: \"›\";
  margin-left: auto;
  font-size: 18px;
  opacity: 0;
  transition: 0.25s ease;
}

.pkp_block .sidebar-menu a:hover::after {
  opacity: 1;
}
