/* Icon styling in overlay */
.static.custom-card .overlay i {
  color: #fff;
  font-size: 2rem;
}

.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.icon-bar a:hover {
  background-color: #000;
}

.content {
  margin-left: 75px;
  font-size: 18px;
}

/* Custom colors for each icon */
.facebook {
  background: #3b5998;
}

.twitter {
  background: #55acee;
}

.google {
  background: #dd4b39;
}

.linkedin {
  background: #007bb5;
}

.youtube {
  background: #bb0000;
}

.whatsapp {
  background: #25d366;
}

/* Custom color for Instagram icon */
.instagram {
  background: #E4405F;
}

/* Custom color for Blogspot icon */
.blogspot {
  background: #FF5722;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .icon-bar a {
      font-size: 16px; /* Smaller font size */
      padding: 8px;    /* Reduced padding */
  }
}
