/* ======================================
   WAAFE ARROW – NAVBAR SYSTEM
====================================== */

/* ===============================
   Global Base (Shared Layout)
=============================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

body {
  padding-top: 20px;
}

/* ===============================
   Desktop Top Navbar
=============================== */
.waafe-top-nav {
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.waafe-top-nav .nav-link {
  color: #bbb;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.waafe-top-nav .nav-link i {
  font-size: 18px;
}

.waafe-top-nav .nav-link:hover,
.waafe-top-nav .nav-link.active {
  color: #ffffff;
}

/* ===============================
   Navbar Default Overrides
=============================== */
.navbar .nav-link {
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #00ff88 !important;
}

.dropdown-menu {
  min-width: 200px;
}

/* ===============================
   User Avatar
=============================== */
.user-avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 2px solid #222;
  border-radius: 50%;
}

/* ===============================
   Create Button (Desktop)
=============================== */
.create-btn i {
  font-size: 26px;
  color: #ffffff;
  transition: transform 0.2s ease, color 0.2s ease;
}

.create-btn:hover i {
  transform: scale(1.15);
  color: #1d9bf0;
}

/* ===============================
   Mobile Bottom Navbar
=============================== */
.waafe-bottom-nav {
  height: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.waafe-bottom-nav .nav-link {
  color: #aaa;
  transition: color 0.25s ease;
}

.waafe-bottom-nav .nav-link i {
  font-size: 22px;
}

.waafe-bottom-nav .nav-link.active {
  color: #ffffff;
}

/* ===============================
   Mobile Avatar
=============================== */
.mobile-avatar {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 50%;
}

/* ===============================
   Floating Create Button (Mobile)
=============================== */
.create-center {
  position: relative;
  top: -22px;
}

.create-fab {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1d9bf0, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(29,155,240,0.45);
  border: 3px solid #000;
  transition: transform 0.2s ease;
}

.create-fab:active {
  transform: scale(0.95);
}