/* ✅ متغيرات عامة */
:root {
  --main-color: #5B5B5B;
  --bg-color: #f0f0f0;
  --gray-bg: #e0e0e0;
  --white: #ffffff;
  --text-color: #111;
}


/* ✅ واجهة الشات */
#chatScreen {
  display: flex;
  flex-direction: column;
  height: 100dvh; /* ✅ وحدات جديدة تضمن التوافق الكامل */
  max-height: 100dvh;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background-color: var(--bg-color);
  direction: ltr;
  font-family: 'Arial', sans-serif;
}

.chat-header {
  background-color: var(--main-color);
  color: var(--white);
  padding: 5px 5px 5px 0px;
  display: flex;
  gap: 5px;
  height: 55px;
  flex-shrink: 0;
}
.chat-header button {
  background-color: var(--white);
  border: none;
  color: var(--main-color);
  font-size: 22px;
  width: 50px;
  height: 100%;
}

.chat-main {
  flex: 1 1 auto;
  overflow: hidden;
  background-color: var(--gray-bg);
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ✅ السكولر داخل الرسائل فقط */
#chat-messages {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  font-weight: 700;
  word-wrap: break-word;
  font-family: 'Arial', sans-serif; /* غير نوع الخط حسب رغبتك */
  scroll-behavior: auto !important; /* إزالة التأخير عند التمرير */
  will-change: transform;           /* تحسين الأداء عند إضافة الرسائل */
  overflow-anchor: none;
   backface-visibility: hidden;
  

}

.chat-input.disabled-input {
  background-color: #9c9c9c;  /* رمادي فاتح */
  color: #e7e7e7;               /* نص باهت */
  cursor: not-allowed;
}

.chat-image-thumb {
  max-width: 160px;
  max-height: 160px;
  border-radius: 8px;
  margin-top: 6px;
  cursor: zoom-in;
}

#lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#lightboxOverlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}


/* شريط المعاينة ياخذ عرض كامل ويطلع كسطر مستقل */
#imagePreviewBar {
  flex-basis: 100%;        /* ← صف كامل */
  order: 2;                /* ترتيبه قبل خانة الكتابة لو حبيت */
  display: none;           /* مع d-none */
}

#imagePreviewBar:not(.d-none) {  /* لما نشيله من d-none */
  display: flex;
  align-items: center;
  gap: 8px;
  background: #222;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 6px 0;
}

#imagePreviewThumb {
  max-width: 70px;
  max-height: 70px;
  border-radius: 6px;
  cursor: zoom-in;
}

#imagePreviewRemove {
  background: #ff4d4f;
  color: #fff;
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  margin-inline-start: auto;
}


/* ===== القاعدة العامة للفوتر ===== */
.chat-footer-bar { 
  position: relative;
   background: #222;
  }
.chat-footer{
  background:#3a3a3a;
  padding:6px;
  display:flex;
  align-items:center;
  gap:6px;
  direction:ltr;
  flex-wrap:nowrap;        /* سطر واحد دائماً */
  overflow:hidden;         /* يمنع الإنزلاق للأسفل */
}
.chat-footer > *{ min-width:0; } /* يسمح للعناصر تتقلص */

/* أزرار الأدوات الصغيرة */
.footer-icon{
  flex:0 0 auto;
  width:34px; height:34px;
  background:#263238;
  border:1px solid #13181c;
  border-radius:4px;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s ease-in-out;
}
.footer-icon i{ font-size:16px; }
.smile-icon{ width:20px; height:20px; }
.footer-icon:hover{
  background:#37474f;
  border-color:#1f2d33;
  transform:scale(1.05);
  cursor:pointer;
}

/* حقل الكتابة وزر الإرسال */
.chat-input{
  flex:1 1 auto;          /* يتمدد ويصغر */
  min-width:60px;         /* أصغر عرض ممكن */
  height:34px;
  background:#fff;
  border:1px solid #1f1f1f;
  border-radius:2px;
  padding:0 8px;
  color:#000;
  font-weight:600;
}
.footer-send{
  flex:0 0 auto;
  height:34px;
  background:#2b2b2b;
  color:#fff;
  border:1px solid #13181c;
  border-radius:4px;
  padding:0 14px;
  font-weight:700;
  display:flex; align-items:center; gap:6px;
  transition:all .2s ease-in-out;
}
.footer-send:hover{
  background:#1e88e5;
  border-color:#1565c0;
  transform:scale(1.05);
  cursor:pointer;
}

/* صندوق الابتسامات */
.smile-box{
  position:absolute;
  bottom:90px; left:6px;
  background:#fff;
  border:1px solid #ccc;
  border-radius:6px;
  padding:8px;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  z-index:50;
}
.smiles-grid{
  display:grid;
  grid-template-columns: repeat(8, 26px);
  gap:6px;
}
.smiles-grid img{ width:26px; height:26px; cursor:pointer; }

/* ===== سطر التبويبات السفلي (سطر واحد دائماً) ===== */
.bottom-bar{
  background:#3a3a3a;
  border-top:2px solid #1b1b1b;
  display:flex;
  flex-wrap:nowrap;       /* سطر واحد */
  direction:ltr;
  width: 100%;
}
.bottom-bar button{
  flex:1 1 0;             /* يسمح بالتقلص */
  min-width:0;            /* يزيل الحد الأدنى */
  background:#3a3a3a;
  color:#eaeaea;
  border:none;
  border-right:1px solid #555;
  padding:0 10px;
  font-weight:700;
  display:flex; align-items:center; justify-content:center; gap:6px;
  transition:background .15s ease-in-out;
}
.bottom-bar button:last-child{ border-right:none; }
.bottom-bar button:hover{ background:#4a4a4a; }



/* ===== تحسينات الموبايل بدون التفاف ===== */
@media (max-width: 768px){
  .chat-footer{ gap:4px; }
  .footer-icon{ width:30px; height:30px; }
  .chat-input{ min-width:50px; font-size:13px; }
  .footer-send{ padding:0 10px; font-size:13px; }

  .bottom-bar button{
    padding:0 10px;
    font-size:14px;
    height: 40px;
    gap:4px;
  }
  .smiles-grid{ grid-template-columns: repeat(7, 26px); }
}

@media (max-width: 420px){
  .smiles-grid{ grid-template-columns: repeat(6, 26px); }
}

/* للأجهزة الكبيرة فقط (كمبيوتر) */
@media (min-width: 992px) {
  .bottom-bar {
    justify-content: flex-start; /* الأزرار لليسار */
  }
  .bottom-bar button {
    flex: 0 0 auto;   /* عرض ثابت للأزرار */
    width: auto;      /* على حسب المحتوى */
    padding: 4px 10px;
    font-size: 16px;
  }
}


/* ✅ الشريط الجانبي */

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  background: var(--white);
  height: 92%;
  width: 320px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-left: 2px solid #5b5b5b;

    /* ✅ خلفية مكررة عموديًا */
  background-image: url('/images/slide-bg.png');
  background-repeat: repeat-y;
  background-position: center top;
  background-size: contain; /* أو cover حسب النتيجة المطلوبة */

}

.sidebar.active {
  display: flex;
}

.sidebar-header {
  background: var(--main-color);
  color: var(--white);
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

.sidebar-content {
  flex: 1;
}

.rtl {
  direction: rtl;
  text-align: right;
}

.d-none {
  display: none !important;
}

.online-count-badge {
  background: #1aa21a;
  color: #fff;
  border-radius: 10px;
  padding: 0 6px;
  min-width: 20px;
  height: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px; /* مسافة صغيرة عن النص */
}



  #content-settings {
    border-radius: 5px;
    color: #fff;
    font-family: Tahoma, sans-serif;
    max-width: 350px;
    margin: auto;
  }

#content-settings label {
    display: block;
    /* margin-bottom: 5px; */
    background-color: #5b5b5b;
    padding: 4px 8px;
    /* border-radius: 4px; */
    font-size: 14px;
    text-align: center;
    color: #fff;
}

#content-settings input[type="text"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #555;
    /* border-radius: 4px; */
    background-color: rgb(255, 255, 255);
    color: #000000;
    text-align: center;
}

.color-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    background-color: #bdbdbd;
    padding: 1px 1px;

}

  .color-setting label {
    margin: 0;
    flex: 1;
    font-size: 13px;
  }

.color-setting input[type="color"] {
    width: 34px;
    height: 34px;
    border: none;
}

.color-setting button {
    background-color: #5b5b5b;
    color: #ffffff;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-weight: bold;
}

  #content-settings .save-btn {
    background-color: green;
    color: #fff;
    border: none;
    width: 100%;
    padding: 5px;
    font-weight: bold;
    font-size: 15px;
  }

 
.save-btn,
.setting-btn,
.danger-btn,
.logout-btn,
.img-btn {
  width: 100%;
  padding: 5px;
  border: 1px solidrgb(99, 97, 97);
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.2s ease;
}

.img-btn {
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.img-btn .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.danger-btn {
  background: #dc3545;
  color: white;
}

.setting-btn {
  background: #f0f0f0;
  color: #333;
  border: 1px solidrgb(99, 97, 97);
}

.logout-btn {
  background: #dc3545;
  color: white;
}

button:hover {
  filter: brightness(0.95);
}

.avatar-preview {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #007bff;
  image-rendering: auto;
}


.admin-btn-full {
  background-color: #006199;
  color: #fff;
  border: none;
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.admin-btn-full:hover {
  background-color: #007bc2;


}


.public_message {
  position: relative;
  background: #fff;
  border: 1px solid #e6e6fa;
  padding: 0px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  transition: none !important; /* يمنع أي تأخير أو قفز */
  will-change: transform;
  backface-visibility: hidden;
}

.public_message img {
  width: 50px;
  height: 50px;
}

.public_message .message-content {
  flex: 1;
}

.public_message .username {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 8px;
  max-width: 100%;
  white-space: nowrap;
  font-size: 14x; 
}

.public_message .text {
  font-family:  Arial, sans-serif; /* نوع الخط */
  font-size: 15px;                           /* حجم الخط */
  line-height: 1.6;                          /* تباعد الأسطر */
  word-wrap: break-word;
}

.message-actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 5px;
  direction: rtl;
  flex-direction: row-reverse;
  align-content: flex-end;
}

.message-actions button {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
  padding: 3px;
}

.message-actions button:hover {
  color: red;
}


.text-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.text-time-row .text {
  flex: 1;
  border-radius: 5px;
}

.message-time {
  font-size: 12px;
  color: #030303;
  white-space: nowrap;
  margin-right: 5px;
}


.smile-box {
  position: absolute;
  bottom: 75px;      /* يظهر فوق الزر */
  left: 1px;        /* جهة الشمال */
  width: 350px;
  max-height: 200px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 5px;
  overflow-y: auto;
  display: none;
  z-index: 999;
  direction: rtl; /* دعم الابتسامات العربية */
}


.smiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.smiles-grid img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.smiles-grid img:hover {
  transform: scale(1.2);
}

/*  بطاقة العضوية */

#userCardOverlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.user-card-popup {
  width: 350px;
  background-color: #fff;
  border: 3px solid #444;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
  text-align: center;
  position: relative;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
  overscroll-behavior: contain; /* ✅ يمنع التمرير من التأثير على خلفية الصفحة */
  scrollbar-width: thin;    /* (اختياري) لجعل السكروول أنحف بالفَيَرفُكس */
  margin-bottom: 20px; /* ✅ تأكد أن آخر زر ما ينقص */
  /*! padding-bottom: 20px; */ /* ✅ تأكد أن آخر زر ما ينقص */
}

/* ✅ شريط علوي مميز */
.user-card-header {
  height: 30px;
  background: #3a3a3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
}

.user-card-header .nickname {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-card-header .nickname img {
  width: 18px;
  height: 18px;
}

.user-card-header .close-btn {
  background-color: #c00;        /* أحمر غامق */
  color: #fff;
  border: none;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.user-card-header .close-btn:hover {
  background-color: rgb(252, 0, 0); /* أحمر أغمق عند التمرير */
}


.card-cover {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-avatar-fb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #fff;
  position: absolute;
  top: 100px;
  left: 20px;
  background: #fff;
}

.card-body {
  padding: 10px 10px 15px;
}

.card-msg {
  font-size: 14px;
  margin-bottom: 5px;
}

.card-ip {
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
}

.card-stats {
  font-size: 13px;
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.card-badges img {
  width: 26px;
  margin: 0 3px;
}

.card-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*! gap: 6px; */
  margin-top: 10px;
}
.card-buttons button {
  flex: 1 1 calc(33.33% - 20px);
  font-size: 12px;
  padding: 5px 5px;
  border: none;
  /*! border-radius: 6px; */
  background-color: #f1eded;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
  border: 1px solid #dcdcdc;
}

.card-buttons button i {
  color: #000000; /* ذهبي مبدئي */
  transition: color 0.3s ease;
}

.card-buttons button:hover i {
  color: #ff4081; /* لون متغير عند التحويم */
}

.card-buttons button:hover {
  transform: translateY(-2px);
}

#btnLike {
  background-color: #e53935; /* أحمر */
  color: white;              /* النص */
}

#btnLike i {
  color: white;              /* أيقونة بيضاء */
}


.card-admin {
  margin-top: 10px;
  padding: 0 10px 10px;
}

.row-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3px 0;
  font-size: 13px;
}

.row-setting label {
  width: 70px;
}

.row-setting input,
.row-setting select {
  flex: 1;
  padding: 4px;
  margin: 0 5px;
  font-size: 12px;
}

.row-setting button {
  padding: 4px 8px;
  background: #444;
  color: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
}


/*   التنبيهات والرسائل الخاصة */

.setting-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  padding: 6px 12px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.styled-switch {
  width: 50px;
  height: 26px;
  border-radius: 30px;
  background: #dc3545; /* أحمر مبدئي */
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.styled-switch[data-state="on"] {
  background: #28a745; /* أخضر */
}

.switch-knob {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #28a745;
}

.styled-switch[data-state="on"] .switch-knob {
  transform: translateX(24px);
  color: #28a745;
}

.styled-switch[data-state="off"] .switch-knob {
  color: #dc3545;
}

/* ✅ أيقونات الحالة للمستخدمين */


.user-avatar-online {
  border-left: 5px solid #4caf50; /* أخضر */
  padding-left: 0px;
}

.user-avatar-idle {
  border-left: 5px solid #ffc107; /* أصفر */
  padding-left: 0px;
}

.user-avatar-closed {
  border-left: 5px solid #f44336; /* أحمر */
  padding-left: 0px;
}

/* ✅ أيقونات الحالة للمستخدمين */

/* ✅ بطاقة العضوية */
.card-admin-modern {
  padding: 15px;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
  /*! margin-top: 15px; */
  font-size: 14px;
  border-radius: 8px;
}

/* ✅ صف الحقل */
.setting-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

/* ✅ عنوان الحقل */
.setting-row label {
  width: 90px;
  min-width: 90px;
  text-align: right;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

/* ✅ المدخلات */
.setting-row input,
.setting-row select {
  flex: 1;
  padding: 7px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 0;
}

/* ✅ الأزرار */
.setting-row .btn-save,
.setting-row .btn-action {
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  transition: background 0.3s ease;
  white-space: nowrap;
}

/* ✅ تأثير عند التحويم */
.setting-row .btn-save:hover {
  background-color: #388e3c; /* أخضر */
}

.setting-row .btn-action:hover {
  background-color: #1565c0; /* أزرق */
}

/* ✅ معلومات البطاقة */
.card-info-box {
  font-size: 13px;
  color: #fff;
  margin: 12px 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 6px;
}

/* ✅ صف داخل معلومات البطاقة */
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
  flex-wrap: wrap;
}

.card-row.center {
  justify-content: center;
  gap: 15px;
  font-weight: bold;
  text-align: center;
}

/* ✅ الدولة */
.country {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ✅ علم الدولة */
.flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
}

/* ✅ اسم الغرفة */
.room-name {
  /* background-color: #444; */
  color: white;
  /* padding: 4px 10px; */
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
}

/* ✅ النجوم */
.card-stars {
  color: #ffca28;
  font-size: 14px;
}

.card-stars i {
  color: #ffbb00;
  font-size: 16px;
  margin: 0 2px;
}

/* ✅ الشارات */
.card-badges {
  display: flex;
  justify-content: space-around;
  /*! gap: 6px; */
  /*! margin-top: 10px; */
  flex-wrap: wrap;
}

.card-badges img {
  width: 44px;
  height: 48px;
  object-fit: contain;
}

/* ✅ استجابة الهواتف */
@media (max-width: 480px) {
  .card-admin-modern {
    padding: 12px;
  }

  .setting-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .setting-row label {
    width: 100%;
    text-align: right;
  }

  .setting-row input,
  .setting-row select,
  .setting-row .btn-save,
  .setting-row .btn-action {
    width: 100%;
  }

  .card-info-box {
    padding: 8px;
  }

  .card-badges img {
    width: 40px;
    height: 44px;
  }
  .user-card-popup {
    max-height: 90vh;
    overflow-y: auto;             /* ✅ تفعيل السكولر فقط على الجوال */
    padding-bottom: 30px;         /* ✅ تأكد أن آخر زر ما ينقص */
    overscroll-behavior: contain; /* ✅ يمنع تأثير التمرير على الصفحة */
    -webkit-overflow-scrolling: touch; /* ✅ سلاسة في iOS */
      margin-top: 30px;         /* ✅ تأكد أن آخر زر ما ينقص */

}
}
/* ✅ نهاية بطاقة العضوية  */

.text-success { color: #ffffff !important; }
.text-danger  { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }

/* ✅ تصميم الغرف */
/* ✅ ستايل قائمة الغرف */
#rooms-list {
  padding: 0;
  list-style: none;
  direction: ltr;
}

#rooms-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid #767474; */
  /* border-radius: 8px; */
  padding: 0px 0px;
  /* margin-bottom: 6px; */
  background: #fff;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
  margin: 2px 0px 0px 2px;
  height: 60px;
}

#rooms-list li:hover {
  background: #f9f9f9;
}

/* ✅ صورة الغرفة */
#rooms-list li img {
  width: 50px;
  height: 50px;
  /* border-radius: 8px; */
  margin-left: 10px;
  object-fit: cover;
  border-radius: 5px;
}

/* ✅ محتوى الغرفة */
#rooms-list li .room-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#rooms-list li .room-info .room-name {
  font-weight: bold;
  color: #222;
  font-size: 14px;
}

#rooms-list li .room-info .room-desc {
  font-size: 12px;
  color: #777;
}

/* ✅ العداد */
#rooms-list li .room-badge {
  font-size: 13px;
  color: #fff;
  background-color: #5b5b5b;
  padding: 4px 10px;
  /* border-radius: 20px; */
  min-width: 55px;
  text-align: center;
  border-radius: 5px;
  margin-right: 5px;
  font-weight: bolder;
}

/* ✅ العداد في حال الغرفة ممتلئة */
#rooms-list li.full .room-badge {
  background-color: #dc3545;
}

/* ✅ نقطة الحالة */
#rooms-list li .room-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dc3545;
  position: absolute;
  right: 8px;
  bottom: 8px;
}

.active-room {
  background-color: #e5e6e5 !important;
  border-left: 4px solid #008d21;
}


/* الرد على الرسائل */
.reply-box {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: 5px 0;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reply-box img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.reply-box strong {
  color: #000;
  margin-right: 5px;
}

.reply-box span {
  font-size: 12px;
  color: #444;
}

.reply-box button {
  background: none;
  border: none;
  color: red;
  font-size: 16px;
  cursor: pointer;
}




.reply-block {
  background: #f1f1f1;
  border-radius: 6px;
  padding: 6px 8px 6px 12px;
  margin: 6px 0;
  border-left: 4px solid #2196f3;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  width: 99%;
}

/* ✅ السهم */
.reply-arrow {
  position: absolute;
  bottom: -5px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #f1f1f1;
  transform: rotate(10deg);
}

/* ✅ صورة المستخدم */
.reply-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* ✅ النصوص */
.reply-content {
  flex: 1;
}

.reply-username {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.reply-text {
  font-size: 13px;
  color: #666;
}

/* الرسائل السيستم تُقرأ RTL وتُرتَّب بالـ Flex */
.sys-inline{
  display: inline-flex;
  flex-direction: row;   /* ترتيب DOM كما هو */
  direction: rtl;        /* عرض عربي من اليمين لليسار */
  align-items: center;
  gap: 6px;
  unicode-bidi: isolate; /* يعزل اتجاه كل جزء */
}
.sys-action{ font-weight: 700; }
.sys-room{font-weight:700;background: #222;color: #fff;}


#messages-wrapper{ display:flex; flex-direction:column; gap:8px; }

/* صندوق رسائل النظام */
#sys-messages{
  border:1px solid #1b1b1b;
  padding:6px;
  max-height:140px;      /* قابل للسكرول */
  overflow:auto;
}

.sys-item{
  direction:rtl;
  display:flex;
  align-items:center;
  gap:8px;
  border:1px dashed #4a4a4a;
  border-radius:4px;
  padding:6px 8px;
  color:#3a3a3a;
  margin-bottom:6px;
}
.sys-item:last-child{ margin-bottom:0; }
.sys-avatar{ width:20px; height:20px; border-radius:50%; object-fit:cover; }
.sys-text a.sys-room-link{ color:#1e88e5; font-weight:700; text-decoration:none; }
.sys-text a.sys-room-link:hover{ text-decoration:underline; }
.sys-time{ margin-inline-start:auto; color:#9aa0a6; font-size:12px; }
.sys-room-link {color: #ffffff;font-weight: 700;text-decoration: none;background: #444444;padding: 5px;/*! border-radius: 5px; *//*! margin-top: 2px; */margin-bottom: 50px;}
.sys-room-link:hover { text-decoration: none; }

/* ===== تصميم صندوق الحائط  ===== */

/* ======================= حائط الرسائل ======================= */
/* ===== حائط الرسائل – تصميم جديد ===== */

/* ==================== حائط الرسائل (ستايل قديم) ==================== */

#content-wall {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 14px;
  font-family: "Arial", Tahoma, Arial, sans-serif;
  font-weight: bold;
  text-align: justify;
  
}

/* شريط بحث اليوتيوب */
.wall-search-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.wall-youtube-input {
  flex: 1 1 auto;
  height: 30px;
  font-size: 12px;
  padding-inline: 6px;
}

.wall-youtube-btn {
  flex: 0 0 auto;
  font-size: 11px;
  padding: 4px 6px;
  line-height: 1;
}

/* سطر المعلومات الأحمر */
.wall-info-line {
  font-size: 12px;
  color: #b91c1c;
  margin-bottom: 4px;
  border-bottom: 1px solid #fee2e2;
  padding-bottom: 2px;
}



/* كل المنشورات جوّا wallList + سكولر */
.wall-list {
  direction: ltr;    
  max-height: calc(100vh - 220px);  /* عدّل 260 حسب ارتفاع الهيدر والفوتر عندك */
  overflow-y: auto;
  padding: 2px;
}


.wall-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 4px;
  border-bottom: 2px solid #bdbdbd;
  padding: 2px;
}

/* الصورة */
.wall-avatar-col {
  display: flex;
  align-items: flex-start;
}

.wall-post-avatar {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

/* الاسم + النص */
.wall-main-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wall-user-name {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.wall-post-msg {
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 15px;
  text-align: justify;
  font-weight: 600;
  text-align-last: right;
  direction: rtl;
}

/* عمود الأزرار على اليمين */
.wall-side-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 46px;
}

.wall-time-label {
  font-size: 11px;
  color: #2d2c2c;
  font-weight: 600;
  font-family: Arial;
  direction: rtl;
}

.wall-side-btn {
  width: 40px;
  min-height: 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  padding: 0 4px;
}

.wall-side-btn i {
  font-size: 11px;
}

/* زر التعليقات */
.wall-comments-btn {
  background: #121212;
  color: #ffffff;
  border-color: #d1d5db;
}

/* زر الإعجاب */
.wall-like-btn {
  background: #c90e0e;
  color: #ffffff;
  border-color: #f87171;
}

/* زر الحذف */
.wall-delete-btn {
  background: #8f0000;
  color: #ffffff;
  border-color: #b91c1c;
}

/* التعليقات أسفل المنشور */
.wall-comments-panel {
  margin-top: 4px;
  border-top: 1px dashed #e5e7eb;
  padding-top: 4px;
}

.wall-comments-list {
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 4px;
}

.wall-comment {
  padding: 4px;
  /* border-bottom: 1px dashed #9b9b9b; */
  background: #cfcfcf;
  border-radius: 5px;
  margin-bottom: 2px;
}

.wall-comment:last-child {
  border-bottom: none;
}

.wall-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
}

.wall-comment-user {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wall-comment-avatar {
  width: 25px;
  height: 25px;
  /* border-radius: 50%; */
  object-fit: cover;
}

.wall-comment-time {
  font-size: 11px;
  color: #000000;
  direction: rtl;
}

.wall-comment-msg {
  font-size: 13px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-weight: 600;
}

/* إدخال التعليق */
.wall-comment-input-row {
  margin-top: 2px;
}

.wall-comment-input {
  font-size: 14px;
  height: 26px;
  padding-inline: 6px;
  direction: rtl;
  font-weight: 600;
}

/* فوتر الحائط */
.wall-footer-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wall-emoji-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #ffffff;
}

.wall-input {
  flex: 1 1 auto;
  height: 32px;
  font-size: 13px;
  padding-inline: 6px;
}

.wall-send-btn {
  flex: 0 0 auto;
  height: 32px;
  font-size: 13px;
  padding: 0 10px;
}


.wall-comment-footer {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* زر لايك التعليق */
.wall-comment-like-btn {
  border: none;
  background: #c90e0e;
  color: #fff;
  border-radius: 3px;
  padding: 0 8px;
  height: 20px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.wall-comment-like-btn i {
  font-size: 11px;
}

/* زر حذف التعليق */
.wall-comment-delete-btn {
  border: none;
  background: transparent;
  color: #000000;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
}

.wall-comment-delete-btn:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ========= معاينة المرفقات قبل الإرسال ========= */

.wall-media-preview {
  margin-top: 4px;
  padding: 6px;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  background: #f9fafb;
}

.wall-media-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
}

.wall-media-preview-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
}

.wall-media-preview-body {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 160px;
  overflow: hidden;
}

.wall-media-preview-body img,
.wall-media-preview-body video {
  max-width: 100%;
  max-height: 150px;
  border-radius: 4px;
  object-fit: contain;
}

.wall-media-preview-body audio {
  width: 100%;
}

/* شريط التقدم */
.wall-media-preview-progress {
  margin-top: 4px;
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.wall-media-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #111827, #2563eb);
  width: 0%;
}

/* ========= مودال الوسائط ========= */

.wall-media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wall-media-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.wall-media-dialog {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  background: #0f172a;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.wall-media-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 4px;
}

.wall-media-content {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wall-media-content img,
.wall-media-content video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}

.wall-media-content audio {
  width: 100%;
}

/* زر "عرض الصورة / الفيديو / الصوت" داخل البوست */
.wall-media-open-btn {
  margin-top: 4px;
  border: 1px solid #d4d4d8;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: 11px;
  padding: 2px 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wall-media-open-btn i {
  font-size: 11px;
}

.wall-media-controls {
  margin-top: 4px;
}

.wall-media-inline {
  margin-top: 4px;
  border-radius: 4px;
  overflow: hidden;
  max-height: 230px;       /* ارتفاع مناسب داخل الحائط */
  background: #00000010;   /* خلفية خفيفة */
}

.wall-media-inline img,
.wall-media-inline video {
  width: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;         /* عشان تبين أنها قابلة للنقر */
}

.wall-media-inline audio {
  width: 100%;
}
