/* 🧍‍♂️ النص: Welcome + الاسم */
.mobile-username {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* Welcome أبيض */
.welcome-text {
  color: #fff;
  font-weight: 500;
}

/* الاسم بلون متدرّج */
.user-name {
  background: linear-gradient(90deg, #00e0ff, #00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* زرار Logout أنيق في نفس السطر */
.mobile-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  margin-left: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.mobile-logout-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* يخفي الزر في الديسكتوب */
@media (min-width: 768px) {
  .mobile-logout-btn {
    display: none !important;
  }
}
/* ===================================
   💻 Desktop Auth Section Styling
=================================== */

/* غلاف الاسم + زرار اللوج آوت */
.nb__auth #authWidget {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* النص الترحيبي */
.nb__auth #authWidget .name {
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00e0ff, #00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* الكلمة "Welcome" */
.nb__auth #authWidget::before {
  content: "Welcome, ";
  color: #fff;
  font-weight: 500;
}

/* زر اللوج آوت */
#logoutBtn {

  color: #fff;
 
 
  cursor: pointer;
  transition: all 0.25s ease;
}


/* يخفي الاسم والزر في الموبايل */
@media (max-width: 767px) {
  .nb__auth #authWidget {
    display: none;
  }
}
/* ===============================
   👤 User Dropdown (Profile / Logout)
   =============================== */
/* ===============================
   👤 User Dropdown (Logout only)
   =============================== */

.user-dropdown {
  position: relative;
  display: inline-block;
}

/* الزر الرئيسي */
.user-btn {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.user-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 224, 255, 0.3);
}

.user-btn i {
  color: #00e0ff;
}

/* القائمة المنسدلة */
/* القائمة المنسدلة */
.user-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 2px); /* ← بدل 8px بخفضها لأعلى */
  background: #111b22;
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 10px;
  min-width: 170px;
  padding: 4px 0; /* ← قلل البادينج العمودي لتقريب الزر */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}

/* عند الفتح */
.user-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 6px); /* ← حركة بسيطة لأسفل أثناء الظهور */
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* عناصر القائمة */
.user-menu li {
  list-style: none;
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding: 10px 18px; /* ← زود التوسيط العمودي */
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.user-menu li:hover {
  background: rgba(0, 224, 255, 0.1);
  color: #00e0ff;
}

/* الأيقونة */
.user-menu i {
  font-size: 15px;
  color: #00e0ff;
  width: 22px;
  min-width: 22px;
  text-align: center;
  pointer-events: none;
}

/* الهوفر */
.user-menu li:hover {
  background: rgba(0, 224, 255, 0.1);
  color: #00e0ff;
}

/* حركة الظهور */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* تأكد أن الـ navbar مايغطيش القايمة */
nav, .navbar, .nb__topbar, header, .nb__container {
  z-index: 1 !important;
  pointer-events: auto;
}

.user-menu {
  transition: opacity .2s ease, transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.user-menu.show {
  transform: translate(-50%, 10px) scale(1);
  opacity: 1;
}
.user-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,224,255,0.2);
}
.user-btn:hover {
  background: rgba(0,224,255,0.08);
  border-color: rgba(0,224,255,0.4);
}
