.linkedin-link-inverted {
  text-decoration: none;
  display: inline-flex; /* Use inline-flex to easily center the SVG if needed */
  align-items: center; /* Vertically center the SVG */
  justify-content: center; /* Horizontally center the SVG */

  /* Create the dark background for the inverted look */
  background-color: #0A66C2; /* LinkedIn's brand blue, or 'black' for a true black background */
  border-radius: 4px; /* Slightly rounded corners for a modern look */
  padding: 2px; /* Small padding around the icon */

  /* Set the overall size of the clickable area and background */
  width: 28px;  /* Example: Very small size */
  height: 28px; /* Example: Very small size */
}

.linkedin-icon-inverted {
  /* ... your SVG fill color and sizing styles ... */
  fill: white;
  width: 100%;
}