/* Info pages sidebar container only */
.info-sidebar.sticky-top{
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 5px;
  background: #fff;
  z-index: 900;
  top: 92px;
}

/* Title */
.info-sidebar h6{
  color:#111;
  padding: 6px 8px 10px;
  margin: 0;
  font-weight: 700;
}

/* List reset + spacing */
.info-sidebar .list-unstyled{
  margin: 0;
}
.info-sidebar .list-unstyled li{
  line-height: 1;
  margin: 6px 0;
}

/* Links = pill items */
.info-sidebar .linkovi-footer{
  display:flex;
  align-items:center;
  gap:10px;

  padding: 12px 12px;
  border-radius: 12px;

  color:#111;
  text-decoration:none;

  border: 1px solid transparent;
  background: transparent;

  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

/* Hover subtle */
.info-sidebar .list-unstyled li:hover{
  background: transparent; /* override your old li:hover */
}
.info-sidebar .linkovi-footer:hover{
  background:#f6f6f6;
  color:#111;
  text-decoration:none;
}

/* Active = red border only (like your account menu) */
.info-sidebar .active-link{
  font-weight: 600;
  border-color:#e30040;
  background: transparent;
}

/* Kill the old red bar */
.info-sidebar .active-link:before{
  content:none;
}

.page-card{
  border:1px solid #eee;
  border-radius:5px;
  background:#fafafa;              /* slight gray tint */
  padding:18px 18px 14px;
}

.page-card__body{
  background:#fff;                 /* white content area like in account cards */
  border:1px solid #f0f0f0;
  border-radius:5px;
  padding:16px;
}

/* Optional: nicer typography inside */
.page-card__body p:last-child{ margin-bottom:0; }
.page-card__body ul:last-child{ margin-bottom:0; }