/* ==========================================================================
   FLOATING SOCIAL SIDEBAR STYLES
   ========================================================================== */
.floating-social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
}

.floating-social-sidebar .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff !important;
  font-size: 1.1rem;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Force Icon Rendering & Alignment */
.floating-social-sidebar .social-btn i {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  color: #ffffff !important;
}

/* Brand Background Colors */
.floating-social-sidebar .social-btn.facebook {
  background-color: #1877f2;
}

.floating-social-sidebar .social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social-sidebar .social-btn.youtube {
  background-color: #ff0000;
}

/* Hover Interaction */
.floating-social-sidebar .social-btn:hover {
  transform: translateX(-6px);
  filter: brightness(1.1);
  box-shadow: -3px 2px 8px rgba(0, 0, 0, 0.25);
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
  .floating-social-sidebar .social-btn {
    width: 36px;
    height: 36px;
  }
  
  .floating-social-sidebar .social-btn i {
    font-size: 15px;
  }
}