.linkStyle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 13px;
  color: #ecf5fe;
  padding: 0.5rem;
  border-radius: 12px;
  transition: 0.3s;
}

/* Hover — white at 20% */
.linkStyle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Selected — solid white fill, brand blue text */
.active,
.active:hover {
  background: #ffffff;
  color: #1d428a;
  box-shadow: none;
}

.linkStyle img {
  width: 36px;
  height: auto;
}

/* Recolor white icons to brand blue when selected */
.active img,
.active svg {
  filter: brightness(0) saturate(100%) invert(18%) sepia(70%) saturate(1800%)
    hue-rotate(201deg) brightness(92%) contrast(95%) !important;
}

.active > div {
  background: rgba(29, 66, 138, 0.12) !important;
}

/* Media Query */
/* =========== */
@media screen and (max-width: 600px) {
  .linkStyle {
    font-size: 14px;
  }
  .linkStyle img {
    width: 28px;
  }
}
