.social-sidebar {
  position: fixed;
  top: 70%;
  right: 5px; /* وضع الأزرار على الجهة اليمنى */
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  text-decoration: none;
}
.in {
  width: 20px;
  height: 20px;
}

.social-btn.whatsapp {
  background: #25d366;
}
.social-btn.instagram {
  background: #006400;
}

.social-btn:hover {
  transform: scale(1.1);
}

.content {
  padding: 10px;
  color: white; /* لون النص */
}
