.meeting-card-live {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: max-content;
  margin-top: 7px !important;
  color: #dc2626 !important;
  font-size: 11px !important;
  font-weight: 800;
}

.meeting-card-live i,
.session-joined-status i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
}

.meeting-card-live i {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .12);
  animation: meeting-live-pulse 1.5s ease-in-out infinite;
}

@keyframes meeting-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.session-join-control {
  display: flex;
  min-width: 155px;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.session-join-control .join-session-button {
  width: 100%;
  justify-content: center;
}

.join-session-button.active.joined,
.join-session-button.active.joined:hover,
.join-session-button.active.joined:disabled {
  cursor: default;
  opacity: .72;
  background: #15803d;
  border-color: #166534;
}

.session-joined-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.session-joined-status i {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}

@media (max-width: 760px) {
  .session-join-control {
    min-width: 0;
    flex: 1 1 155px;
  }
}
