/* تهيئة أساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Tahoma, Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  direction: rtl; /* المحتوى من اليمين إلى اليسار */
}
.index-main {
  width: 90%;
  margin: 1px 5%;
}

/* شريط تسجيل الدخول (أفقي) */
.login-bar {
  width: 106.6%;
  background-color: #eee;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.login-form-horizontal {
  display: flex;
  gap: 10px;
  align-items: center;
}
.login-form-horizontal input,
.login-form-horizontal button,
.register-btn {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* تنسيق الأزرار العامة */
.btn {
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
  border: none;
}
/* زر التسجيل */
.register-btn {
  text-decoration: none;
  background-color: #2ecc71;
}

/* زر تسجيل الخروج - التعديل هنا بحيث يأخذ تنسيقه من CSS فقط */
.side-logout-btn {
  background-color: #e74c3c !important; /* لون أحمر */
  color: #fff !important;
  border: none !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
}

/* عند تصغير حجم الشاشة (الجوال) */
@media (max-width: 768px) {
  .login-bar {
    flex-direction: column;
  }
  
  .login-form-horizontal {
    flex-direction: column;
    width: 100%;
  }
  
  .login-form-horizontal input,
  .login-form-horizontal button,
  .register-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .register-btn {
    margin-bottom: 0;
  }
}

/* صندوق بيانات العضو */
.user-box-container {
  width: 106%;
  display: flex;
  flex-direction: row-reverse;  /* عكس الترتيب: العنصر الأول يظهر على اليمين */
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 5px solid #eeeeee;
  border-radius: 8px;
  background: #fff;
  margin: 20px 0;
}
.user-box-left {
  /* يحتوى على زر تسجيل الخروج */
}
.user-box-right {
  display: flex;
  align-items: center;
}
.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.separator {
  width: 2px;
  height: 80px;
  background: #000;
  margin: 0 15px;
}
.user-info {
  display: flex;
  flex-direction: column;
}
.username {
  margin-bottom: 5px;
}
.rank {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #555;
}
.badges .star.filled {
  color: gold;
  font-size: 1.2em;
}
.user-threads,
.user-posts {
  margin: 5px 0;
  font-size: 0.9em;
}
