/* TMD Social Link Styles */
.tmd-social-icons {
  position: fixed;
  left: 20px; /* Default position, can be modified through settings */
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tmd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Default size, can be modified through settings */
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.tmd-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tmd-icon svg {
  width: 60%;
  height: 60%;
}

.whatsapp-icon {
  background-color: #25d366;
}

.phone-icon {
  background-color: #007bff;
}

.contact-icon {
  background-color: #6c757d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .tmd-social-icons {
    left: 10px;
  }

  .tmd-icon {
    width: 40px;
    height: 40px;
  }
}

/* Animation for icons */
@keyframes tmdFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tmd-social-icons {
  animation: tmdFadeIn 0.5s ease-out forwards;
}
