/*
 * RailsDen Community Presence
 */

body.rails-den .rails-den-community-presence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 14px 0 0;
  color: var(--rails-den-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

body.rails-den .rails-den-community-presence-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.rails-den .rails-den-community-presence-dot {
  display: inline-block;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

body.rails-den
  .rails-den-community-presence-item.is-presence-online
  .rails-den-community-presence-dot {
  background: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.14),
    0 0 9px rgba(34, 197, 94, 0.24);
}

body.rails-den
  .rails-den-community-presence-item.is-presence-away
  .rails-den-community-presence-dot {
  background: #f59e0b;
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.14),
    0 0 9px rgba(245, 158, 11, 0.18);
}

body.rails-den .rails-den-community-presence strong {
  color: var(--rails-den-text);
  font-weight: 750;
}
