/* تنسيق التذييل */
.site-footer {
  background-color: #222; /* خلفية داكنة */
  color: #fff;
  padding: 20px 0;
  font-family: 'Cairo', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* الروابط الداخلية */
.footer-left a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #f39c12; /* لون مميز عند المرور */
}

/* أيقونات التواصل */
.footer-center a img {
  width: 28px;
  margin: 0 6px;
  filter: brightness(0) invert(1); /* يجعل الأيقونات بيضاء */
  transition: transform 0.3s ease;
}
.footer-center a img:hover {
  transform: scale(1.2);
}

/* حقوق النشر */
.footer-right p {
  margin: 0;
  font-size: 12px;
  white-space: nowrap;       /* يمنع النزول لسطر جديد */
  overflow: hidden;          /* يخفي أي نص زائد */
}


/* جعل التذييل متجاوب */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-center, .footer-right {
    margin: 5px 0;
  }
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  z-index: 1000;
}

.floating-btn img {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
}

/* عند التفعيل */
.floating-btn.active {
  background: #000; /* اللون الأسود */
}

.social-popup {
  position: absolute;
  bottom: 70px;              /* فوق الزر مباشرة */
  left: 50%;                 /* منتصف الزر */
  transform: translateX(-50%); /* توسيط أفقي */
  display: flex;
  flex-direction: column;    /* عمودي */
  align-items: center;
  gap: 10px;
  opacity: 0;                /* مخفية افتراضيًا */
  transition: all 0.4s ease;
  pointer-events: none;
}

.social-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0); /* انزلاق للأعلى */
  pointer-events: auto;
}

.social-popup a img {
  width: 60px;   /* حجم الأيقونات */
  height: 60px;
  transition: transform 0.3s ease;
}

.social-popup a img:hover {
  transform: scale(1.2);
}

.comment-item {
  background: #f9f9f9;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.user-row {
  display: flex;
  align-items: center; /* يجعل النص بمحاذاة وسط الصورة */
  gap: 8px;            /* مسافة صغيرة بين الصورة والنص */
}

.avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;      /* يمنع الصورة من التمدد */
}

.username {
  font-weight: bold;   /* يجعل النص بولد */
}


.comment-text {
  margin: 0;
  padding-left: 40px; /* ليظهر تحت الصورة والاسم */
}

.delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: red;
  font-size: 14px;
}
