.css-social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
}

.css-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-color: #f4a629;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.css-social-link:hover {
  background-color: #e09520;
}

.css-social-link svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .css-social-link {
    width: 44px;
    height: 44px;
  }

  .css-social-link svg {
    width: 20px;
    height: 20px;
  }
}
