.presence-status {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.presence-status::before {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #98a2b3;
  content: "";
}

.presence-status.is-online {
  color: #079455;
}

.presence-status.is-online::before {
  background: #27a26d;
  box-shadow: 0 0 0 3px rgba(39, 162, 109, .12);
}

.master-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  padding: 8px 10px;
  border-bottom: 1px solid #dfe7f2;
  background: #fff;
}

.master-call button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #bcd2ff;
  border-radius: 13px;
  background: #eaf2ff;
  color: #172554;
  font-weight: 900;
  cursor: pointer;
}

.master-call button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.master-call button.is-online {
  border-color: #b7ebd3;
  background: #ecfdf3;
  color: #067647;
}

.master-call button:disabled {
  cursor: default;
  opacity: 1;
}

.master-call button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .2);
  outline-offset: 2px;
}

.master-call small {
  color: #667085;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
