/*
 * EA BuddyBoss Profile Integration Styles (v3)
 */

/* ── Role badge block on profile header ───────────────────────────────── */
.ea-bb-profile-badges {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 8px 0 12px;
}
.ea-biz-name-badge {
  font-size: 0.9rem; font-weight: 700; color: #0f2d52;
  background: #eef3fb; padding: 4px 14px; border-radius: 100px;
  border: 1.5px solid #bfcfed;
}

/* ── Business info section on profile ─────────────────────────────────── */
.ea-bb-business-section {
  background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 24px; margin: 20px 0;
}
.ea-bb-section-title {
  font-size: 1rem; font-weight: 800; color: #0f2d52;
  margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0;
}
.ea-bb-biz-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}
.ea-bb-biz-item { display: flex; gap: 10px; align-items: flex-start; }
.ea-bb-biz-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.ea-bb-biz-content { display: flex; flex-direction: column; gap: 2px; }
.ea-bb-biz-label { font-size: 0.72rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; }
.ea-bb-biz-value { font-size: 0.9rem; color: #1e293b; font-weight: 500; }
a.ea-biz-link { color: #0f2d52; text-decoration: none; font-weight: 600; }
a.ea-biz-link:hover { text-decoration: underline; }

/* ── Member directory card injection ──────────────────────────────────── */
.ea-member-card-biz {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 6px;
}
.ea-card-biz-name { font-weight: 700; color: #0f2d52; font-size: 0.88rem; }
.ea-card-biz-site { font-size: 0.78rem; color: #0f2d52; text-decoration: none; font-weight: 600; }
.ea-card-biz-site:hover { text-decoration: underline; }

/* ── Member type tabs ─────────────────────────────────────────────────── */
.ea-member-type-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0;
}
.ea-member-tab {
  padding: 7px 18px; border-radius: 100px;
  border: 2px solid #e2e8f0; background: #fff;
  font-size: 0.82rem; font-weight: 600; color: #475569;
  text-decoration: none; transition: all 0.15s;
}
.ea-member-tab:hover, .ea-tab-active { background: #0f2d52; border-color: #0f2d52; color: #fff; }

/* ── Role badge (scoped here for BuddyBoss context) ──────────────────── */
.ea-role-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.ea-role-badge--service-provider   { background: #d1fae5; color: #065f46; }
.ea-role-badge--pro-business-owner { background: #065f46; color: #fff; }
.ea-role-badge--contractor         { background: #fef3c7; color: #92400e; }
.ea-role-badge--pro-contractor     { background: #92400e; color: #fff; }
.ea-role-badge--homeowner          { background: #dbeafe; color: #1e40af; }
.ea-role-badge--homeowner-pro      { background: #1e40af; color: #fff; }
.ea-role-badge--just-browsing      { background: #f1f5f9; color: #64748b; }
.ea-role-badge--buddyboss-member   { background: #ede9fe; color: #5b21b6; }
