.floating-social-panel {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 5px;
}

.floating-social-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-size: 20px;
}

.floating-social-panel a:hover {
  color: #fff;
}

.floating-social-panel .facebook { background: #3b5998; color: #fff; }
.floating-social-panel .twitter { background: #000000; color: #fff; }
.floating-social-panel .instagram { background: #e1306c; color: #fff; }
.floating-social-panel .linkedin { background: #0077b5; color: #fff; }
.floating-social-panel .youtube { background: #cd201f; color: #fff; }
.floating-social-panel .whatsapp {
  background: #25D366;
  color: #fff;
}

