/* =============================================================
   ARIAM-USAKA PROFESSIONALS — Main Stylesheet
   Font: Plus Jakarta Sans (body) + Sora (headings/brand)
   ============================================================= */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --au-blue:        #07215c;
  --au-blue-dark:   #172035;
  --au-blue-light:  #e8f0fe;
  --au-gold:        #d97706;
  --au-gold-light:  #fef3c7;
  --au-green:       #059669;
  --au-red:         #dc2626;
  --au-purple:      #7c3aed;

  --bg-body:        #f0f2f5;
  --bg-card:        #ffffff;
  --bg-navbar:      #ffffff;
  --bg-sidebar:     #ffffff;
  --bg-input:       #f9fafb;

  --text-primary:   #0f172a;
  --text-secondary: #64748b;
  --text-muted:     #94a3b8;

  --border-color:   #e2e8f0;
  --border-light:   #f1f5f9;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.14);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --navbar-h:   64px;
  --sidebar-w:  260px;
}

[data-bs-theme="dark"] {
  --bg-body:        #0f172a;
  --bg-card:        #1e293b;
  --bg-navbar:      #1e293b;
  --bg-sidebar:     #1e293b;
  --bg-input:       #0f172a;
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
  --border-color:   #334155;
  --border-light:   #1e293b;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.3);
  --shadow-md:      0 4px 16px rgba(0,0,0,.4);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

a { color: var(--au-blue); text-decoration: none; }
a:hover { color: var(--au-blue-dark); }

img { max-width: 100%; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-blue { color: var(--au-blue) !important; }
.text-gold { color: var(--au-gold) !important; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar-main {
  background: var(--bg-navbar);
  border-bottom: 1px solid var(--border-color);
  height: var(--navbar-h);
  box-shadow: var(--shadow-sm);
  z-index: 1030;
}

.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--au-blue), var(--au-purple));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
}

.brand-accent { color: var(--au-blue); }

.search-form .input-group {
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  width: 300px;
}
.search-form .input-group-text {
  background: var(--bg-input);
  border: none;
  color: var(--text-muted);
  padding-left: 14px;
}
.search-form .form-control {
  background: var(--bg-input);
  border: none;
  box-shadow: none;
  font-size: 13px;
}
.search-form .form-control:focus { box-shadow: none; }

/* Nav icon buttons */
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
  text-decoration: none;
}
.nav-icon-btn:hover, .nav-icon-btn.active {
  background: var(--au-blue-light);
  color: var(--au-blue);
}

.badge-dot {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--au-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 4px;
  border-radius: var(--radius-full);
  min-width: 16px;
  text-align: center;
}

/* ── Notification Dropdown ───────────────────────────────────── */
.notif-dropdown {
  width: 360px;
  max-height: 480px;
  overflow-y: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}
.notif-header {
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  transition: background .12s;
}
.notif-item:hover { background: var(--au-blue-light); }
.notif-item.unread { background: rgba(26,86,219,.04); }
.notif-item .notif-text { font-size: 13px; line-height: 1.45; }
.notif-item .notif-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Layout ──────────────────────────────────────────────────── */
#page-wrapper { min-height: calc(100vh - var(--navbar-h)); }

.layout-3col {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr 280px;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 16px;
}
.layout-2col {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 16px;
}
.layout-center {
  max-width: 680px;
  margin: 20px auto;
  padding: 0 16px;
}

@media (max-width: 1100px) {
  .layout-3col { grid-template-columns: var(--sidebar-w) 1fr; }
  .layout-right-sidebar { display: none; }
}
@media (max-width: 768px) {
  .layout-3col, .layout-2col { grid-template-columns: 1fr; }
  .layout-left-sidebar { display: none; }
}

/* ── Cards ───────────────────────────────────────────────────── */
.card-au {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
.card-au:hover { box-shadow: var(--shadow-md); }

.card-header-au {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Left Sidebar ────────────────────────────────────────────── */
.sidebar-left {
  position: sticky;
  top: calc(var(--navbar-h) + 16px);
  height: fit-content;
}
.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: all .15s;
  text-decoration: none;
}
.sidebar-nav-link:hover { background: var(--au-blue-light); color: var(--au-blue); }
.sidebar-nav-link.active { background: var(--au-blue-light); color: var(--au-blue); }
.sidebar-nav-link i { width: 20px; text-align: center; font-size: 16px; }

/* ── Profile mini card (sidebar) ─────────────────────────────── */
.profile-mini {
  text-align: center;
  padding: 20px 16px;
}
.profile-mini .cover-mini {
  height: 60px;
  background: linear-gradient(135deg, var(--au-blue), var(--au-purple));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -20px -16px 0;
}
.profile-mini .avatar-lg {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  margin-top: -32px;
  object-fit: cover;
}
.profile-mini .name { font-weight: 700; font-size: 14px; margin-top: 8px; }
.profile-mini .sub  { font-size: 12px; color: var(--text-muted); }

/* ── Post Composer ───────────────────────────────────────────── */
.post-composer {
  padding: 14px 16px;
}
.post-composer .composer-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color .2s;
}
.post-composer .composer-input:hover { border-color: var(--au-blue); }
.post-composer .composer-placeholder {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
}
.composer-actions { display: flex; gap: 4px; margin-top: 10px; }
.composer-action-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
}
.composer-action-btn:hover { background: var(--au-blue-light); color: var(--au-blue); }
.composer-action-btn i { font-size: 15px; }

/* ── Post Card ───────────────────────────────────────────────── */
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.post-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-header .avatar-sm { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.post-header .post-author { font-weight: 700; font-size: 14px; }
.post-header .post-meta   { font-size: 12px; color: var(--text-muted); }
.post-header .post-options { margin-left: auto; }

.post-content {
  padding: 0 16px 12px;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.post-content .hashtag { color: var(--au-blue); font-weight: 600; }
.post-content .mention  { color: var(--au-purple); font-weight: 600; }

.post-media { overflow: hidden; }
.post-media img { width: 100%; max-height: 500px; object-fit: cover; cursor: pointer; }
.post-media video { width: 100%; max-height: 400px; }
.post-media-grid {
  display: grid;
  gap: 2px;
}
.post-media-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.post-media-grid.cols-3 { grid-template-columns: 2fr 1fr; }
.post-media-grid.cols-3 .media-right { display: grid; gap: 2px; }

.post-stats {
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.post-actions {
  display: flex;
  padding: 4px 8px;
}
.post-action-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
}
.post-action-btn:hover { background: var(--au-blue-light); color: var(--au-blue); }
.post-action-btn.liked  { color: var(--au-red); }
.post-action-btn.liked:hover { background: #fee2e2; }

.comments-section {
  border-top: 1px solid var(--border-light);
  padding: 8px 16px;
  display: none;
}
.comments-section.open { display: block; }
.comment-form { display: flex; gap: 8px; align-items: flex-start; padding: 8px 0; }
.comment-form textarea {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 13px;
  resize: none;
  min-height: 36px;
  max-height: 120px;
  color: var(--text-primary);
  transition: border-color .2s;
}
.comment-form textarea:focus { outline: none; border-color: var(--au-blue); }

.comment-item {
  display: flex;
  gap: 8px;
  padding: 6px 0;
}
.comment-bubble {
  background: var(--bg-input);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 8px 12px;
  flex: 1;
  font-size: 13px;
}
.comment-author { font-weight: 700; font-size: 13px; }
.comment-text   { margin-top: 2px; }
.comment-actions { display: flex; gap: 8px; margin-top: 4px; font-size: 12px; color: var(--text-muted); }
.comment-actions a { color: var(--text-muted); font-weight: 600; }
.comment-actions a:hover { color: var(--au-blue); }

/* ── Avatars ─────────────────────────────────────────────────── */
.avatar-xs  { width: 28px;  height: 28px;  border-radius: 50%; object-fit: cover; }
.avatar-sm  { width: 40px;  height: 40px;  border-radius: 50%; object-fit: cover; }
.avatar-md  { width: 56px;  height: 56px;  border-radius: 50%; object-fit: cover; }
.avatar-lg  { width: 80px;  height: 80px;  border-radius: 50%; object-fit: cover; }
.avatar-xl  { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.avatar-xxl { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg-card); }

.online-dot {
  width: 10px; height: 10px;
  background: var(--au-green);
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  position: absolute;
  bottom: 1px; right: 1px;
}

/* ── Member Cards ────────────────────────────────────────────── */
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.member-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.member-card .verified-badge {
  color: var(--au-blue);
  font-size: 14px;
  margin-left: 4px;
}
.member-card .profession { font-size: 12px; color: var(--text-muted); }
.member-card .location   { font-size: 12px; color: var(--text-muted); }
.member-card .skills-list { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 8px; }
.skill-badge {
  background: var(--au-blue-light);
  color: var(--au-blue);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ── Profile Page ────────────────────────────────────────────── */
.profile-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--au-blue) 0%, var(--au-purple) 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
  overflow: hidden;
}
.profile-cover img { width: 100%; height: 100%; object-fit: cover; }
.profile-cover-edit {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.profile-info-block {
  padding: 0 20px 20px;
  position: relative;
}
.profile-avatar-wrap {
  position: absolute;
  top: -60px;
  left: 20px;
}
.profile-actions { text-align: right; padding-top: 12px; }

/* ── Business Card ───────────────────────────────────────────── */
.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.business-card:hover { box-shadow: var(--shadow-md); }
.business-card .logo { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }
.business-card .rating { color: var(--au-gold); }
.business-card .badge-featured {
  background: var(--au-gold-light);
  color: var(--au-gold);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ── Blog ────────────────────────────────────────────────────── */
.blog-card .featured-img { height: 180px; object-fit: cover; width: 100%; }
.blog-card .category-badge {
  background: var(--au-blue);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card .reading-time { font-size: 12px; color: var(--text-muted); }

/* ── Football ────────────────────────────────────────────────── */
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 8px;
}
.match-card .team-logo { width: 36px; height: 36px; object-fit: contain; }
.match-card .score {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text-primary);
}
.match-card .live-badge {
  background: var(--au-red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

/* ── Messaging ───────────────────────────────────────────────── */
.chat-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: calc(100vh - var(--navbar-h) - 32px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.chat-list { border-right: 1px solid var(--border-color); overflow-y: auto; }
.chat-list-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background .12s;
}
.chat-list-item:hover, .chat-list-item.active { background: var(--au-blue-light); }
.chat-list-item .last-msg { font-size: 12px; color: var(--text-muted); }
.chat-list-item .msg-time  { font-size: 11px; color: var(--text-muted); }
.unread-msg-dot { width: 8px; height: 8px; background: var(--au-blue); border-radius: 50%; margin-left: auto; flex-shrink: 0; }

.chat-window { display: flex; flex-direction: column; height: 100%; }
.chat-header { padding: 14px 16px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 10px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.chat-input-area { padding: 12px 16px; border-top: 1px solid var(--border-color); display: flex; gap: 8px; align-items: flex-end; }
.chat-input-area textarea {
  flex: 1; resize: none; min-height: 40px; max-height: 120px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: 14px;
  background: var(--bg-input);
  color: var(--text-primary);
}
.chat-input-area textarea:focus { outline: none; border-color: var(--au-blue); }

.bubble {
  max-width: 70%;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.bubble-out { background: var(--au-blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble-in  { background: var(--bg-input); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble-time { font-size: 11px; opacity: .7; margin-top: 2px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-au-primary {
  background: var(--au-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 9px 20px;
  font-size: 14px;
  transition: background .15s, transform .1s;
}
.btn-au-primary:hover { background: var(--au-blue-dark); color: #fff; }
.btn-au-primary:active { transform: scale(.98); }

.btn-au-outline {
  background: transparent;
  color: var(--au-blue);
  border: 1.5px solid var(--au-blue);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 7px 18px;
  font-size: 14px;
  transition: all .15s;
}
.btn-au-outline:hover { background: var(--au-blue); color: #fff; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-au .form-control, .form-au .form-select {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  padding: 10px 14px;
}
.form-au .form-control:focus, .form-au .form-select:focus {
  border-color: var(--au-blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
  background: var(--bg-card);
}
.form-au label { font-weight: 600; font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }

/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a56db 100%);
  padding: 20px;
}
.auth-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.auth-card .auth-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.auth-card .auth-logo .brand-icon { width: 44px; height: 44px; font-size: 20px; }

/* ── Admin ───────────────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: calc(100vh - var(--navbar-h));
}
.admin-sidebar {
  width: 240px;
  background: #0f172a;
  flex-shrink: 0;
  padding: 20px 0;
  position: sticky;
  top: var(--navbar-h);
  height: calc(100vh - var(--navbar-h));
  overflow-y: auto;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  color: #94a3b8;
  font-weight: 600;
  font-size: 13px;
  transition: all .15s;
  text-decoration: none;
}
.admin-nav-link:hover, .admin-nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.admin-nav-link i { width: 18px; text-align: center; }
.admin-content { flex: 1; padding: 24px; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card .icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-card .value { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; }
.stat-card .label { font-size: 13px; color: var(--text-muted); }

/* ── Mobile Bottom Nav ───────────────────────────────────────── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  z-index: 1020;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.mbn-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 10px; font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}
.mbn-item i { font-size: 20px; }
.mbn-item.active { color: var(--au-blue); }
.mbn-item.mbn-create {
  width: 44px; height: 44px; flex: none; margin: 0 auto;
  background: var(--au-blue);
  color: #fff !important;
  border-radius: 50%;
  font-size: 20px !important;
}
.mbn-item span { font-size: 10px; }

/* mobile bottom padding */
@media (max-width: 992px) {
  #page-wrapper { padding-bottom: 70px; }
}

/* ── Modal ───────────────────────────────────────────────────── */
.modal-content { border-radius: var(--radius-lg); border: none; }
.modal-header  { border-bottom: 1px solid var(--border-color); }
.modal-footer  { border-top: 1px solid var(--border-color); }

/* ── Loading Spinner ─────────────────────────────────────────── */
.au-spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border-color);
  border-top-color: var(--au-blue);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Infinite scroll loader ──────────────────────────────────── */
#feed-loader { text-align: center; padding: 20px; color: var(--text-muted); }

/* ── Toasts ──────────────────────────────────────────────────── */
.au-toast-container {
  position: fixed; bottom: 80px; right: 16px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.au-toast {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  animation: slideIn .25s ease;
  max-width: 300px;
}
.au-toast.success { border-left: 3px solid var(--au-green); }
.au-toast.error   { border-left: 3px solid var(--au-red); }
.au-toast.info    { border-left: 3px solid var(--au-blue); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Verification badge ──────────────────────────────────────── */
.verified { color: var(--au-blue); }

/* ── Dropzone ────────────────────────────────────────────────── */
.dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--au-blue); background: var(--au-blue-light); }
.dropzone i { font-size: 32px; color: var(--text-muted); margin-bottom: 8px; }

/* ── Utilities ───────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border-color); margin: 12px 0; }
.text-small { font-size: 12px; }
.gap-6 { gap: 6px; }
.cursor-pointer { cursor: pointer; }
.no-select { user-select: none; }
.skeleton {
  background: linear-gradient(90deg, var(--border-color) 25%, var(--border-light) 50%, var(--border-color) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { from { background-position: 200% center; } to { background-position: -200% center; } }
