/* === GENERAL === */
body {
  font-family: 'Poppins', sans-serif !important;
  background-color: #f9f9f9;
  color: #222;
}

/* === PROFILE HEADERS & BOXES === */
#buddypress .bp-widget,
#buddypress .profile,
#buddypress .standard-form,
#buddypress div.item-body {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#buddypress div.item-header {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

#buddypress .item-header-content h2,
#buddypress .item-header-content h3 {
  font-size: 1.6rem;
  color: #0077cc;
}

/* === NAVIGATION TABS === */
#buddypress .item-list-tabs ul li a {
  background-color: #ffffff;
  color: #0077cc;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}

#buddypress .item-list-tabs ul li a:hover,
#buddypress .item-list-tabs ul li.selected a {
  background-color: #0077cc;
  color: #ffffff;
}

/* === BUTTONS === */
#buddypress a.button,
#buddypress input[type="submit"],
#buddypress input[type="button"] {
  background-color: #0077cc;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out;
}

#buddypress a.button:hover,
#buddypress input[type="submit"]:hover {
  background-color: #005fa3;
}

/* === FORMS === */
#buddypress .standard-form input[type="text"],
#buddypress .standard-form input[type="email"],
#buddypress .standard-form textarea {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
  font-size: 1rem;
}

/* === PROFILE SIDEBAR HEADERS === */
#buddypress .profile-fields h4 {
  font-size: 1.1rem;
  color: #0077cc;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* === MONARCH SOCIAL ICONS - STACKED VERTICALLY, NO COUNTS, RECTANGULAR === */
.et_monarch .et_social_followers_count,
.et_monarch .et_social_totalcount {
  display: none !important;
}

.et_monarch .et_social_icon {
  width: 220px !important;
  height: 48px !important;
  font-size: 18px !important;
  line-height: 48px !important;
  border-radius: 12px !important;
  text-align: left !important;
  padding-left: 18px !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px !important;
  flex-direction: row !important;
  box-sizing: border-box;
}

.et_monarch .et_social_network_name {
  font-size: 15px !important;
  font-weight: 600;
  margin-left: 10px;
}

.et_monarch .et_social_network {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: auto !important;
  margin: 0 auto 12px auto !important;
  text-align: left;
}

.et_monarch .et_social_inline .et_social_networks {
  display: block !important;
  text-align: left !important;
}

.et_monarch .et_social_networks {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 767px) {
  .et_monarch .et_social_icon {
    width: 100% !important;
    font-size: 18px !important;
  }

  #buddypress .item-header-content h2,
  #buddypress .item-header-content h3 {
    font-size: 1.3rem;
  }

  #buddypress .standard-form input[type="text"],
  #buddypress .standard-form input[type="email"],
  #buddypress .standard-form textarea {
    font-size: 0.95rem;
  }
}

/* === AVATAR UPLOAD — Rounded Circle === */
#buddypress img.avatar {
  border-radius: 50%;
  border: 2px solid #0077cc;
}

/* === ACTIVITY STREAM MASONRY GRID (Optional) === */
.buddypress #activity-stream {
  column-count: 1;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .buddypress #activity-stream {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .buddypress #activity-stream {
    column-count: 3;
  }
	
}

/* === CLEAN HEADINGS & LABELS === */
#buddypress h2,
#buddypress h3,
#buddypress h4 {
  color: #222;
  font-family: 'Poppins', sans-serif;
}

