/* social-sticky.css */
/* Yapışkan Sosyal Medya Butonları */
.social-sticky {
  position: fixed;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}
.social-sticky a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 3px 0;
  border-radius: 0 5px 5px 0;
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-sticky a.facebook { background: #3b5998; }
.social-sticky a.instagram { background: #E4405F; }
.social-sticky a.twitter { background: #1DA1F2; }
.social-sticky a.youtube { background: #FF0000; }
.social-sticky a:hover {
  padding-left: 10px;
}
