/* GJPHS Sidebar Menu v2 - hover + icon badges */
.gjphs-menu {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  margin: 0 0 20px 0;
}

.gjphs-menu-title {
  background: linear-gradient(135deg, #003B5C, #09D6FF);
  color: #ffffff;
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 10px 10px 0 0;
  border-bottom: 5px solid #21B573;
  text-transform: uppercase;
}

.gjphs-menu-list {
  background: #ffffff;
  border: 1px solid #e1e7ea;
  border-top: 0;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.gjphs-menu-link {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none !important;
  color: #003B5C !important;
  background: #f7f9fa;
  padding: 12px 13px;
  margin-bottom: 8px;
  border-left: 5px solid #09D6FF;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  transition: all 0.22s ease;
}

.gjphs-menu-link:last-child {
  margin-bottom: 0;
}

.gjphs-menu-link:hover,
.gjphs-menu-link:focus {
  background: #003B5C;
  color: #ffffff !important;
  border-left-color: #21B573;
  transform: translateX(4px);
  box-shadow: 0 5px 14px rgba(0,59,92,0.22);
}

.gjphs-menu-icon {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eaf7fb;
  color: #003B5C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: all 0.22s ease;
}

.gjphs-menu-link:hover .gjphs-menu-icon,
.gjphs-menu-link:focus .gjphs-menu-icon {
  background: #09D6FF;
  color: #003B5C;
}

.gjphs-menu-link.green {
  border-left-color: #21B573;
}

.gjphs-menu-link.gold {
  border-left-color: #F5B041;
}

.gjphs-menu-link.red {
  border-left-color: #D9534F;
}

.gjphs-menu-link.navy {
  border-left-color: #003B5C;
}