/* chat_participants.css */

/* ───── 참여자 목록 전용 스타일 ───── */
.participants-modal {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  display: none;
  background: #fff;
  z-index: 10001 !important;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.participants-modal.visible {
  display: block !important;
}

/* ───── 모달 내부 컨텐츠 ───── */
.participants-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ───── 헤더 ───── */
.participants-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  background: #f5f5f5;
}

.modal-title {
  font-size: 16px;
  font-weight: bold;
}

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* ───── 본문 ───── */
.participants-modal-body {
  flex: 1;
  padding: 0;
}

#participants_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ───── 리스트 아이템 ───── */
#participants_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

#participants_list li:hover {
  background: #f9f9f9;
}

/* ───── 사용자명 ───── */
.participant-name {
  flex: 1;
  font-size: 14px;
  color: #333;
}

/* ───── 점 세 개 메뉴 버튼 ───── */
.participant-menu-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  color: #666;
}

.participant-menu-btn:hover {
  color: #333;
}
