.textenter {
  white-space: pre-line;
  word-wrap: break-word;
}

/*********************************************************/
/* زر الرجوع لأعلى */
.scroll-top-btn {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #0b1a3f; /* كحلي */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInFromRight 0.6s ease-out;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* السهم الأحمر الرفيع */
.arrow-up {
  width: 16px;
  height: 16px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  border-left: 2px solid red;
  border-bottom: 2px solid red;
  transform: rotate( 134deg);
}
/* حركة الدخول من اليمين */
@keyframes slideInFromRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* تأثير عند المرور بالماوس */
.scroll-top-btn:hover {
  background-color: #6b7bac;
}

/*********************************************************/
  /* اتجاه اللغة ديناميكياً حسب dir بالـ HTML */
.lang-dir {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .lang-dir {
  direction: rtl;
  text-align: right;
}
