/* userPanel.css */
#userPanelContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 220px;
  max-height: 350px;
  background-color: #ffffff;
  border: 2px solid #007BFF; /* ble */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  z-index: 1000;
}

#userPanelContainer h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #FFD700; /* jòn */
  text-align: center;
}

#userList {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

#userList li {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  margin-bottom: 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#userList li:hover {
  background-color: #e0f0ff; /* limyè ble lè hover */
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.online {
  background-color: #28a745; /* vèt */
}

.offline {
  background-color: #dc3545; /* wouj */
}

footer {
  font-size: 11px;
  text-align: center;
  margin-top: 8px;
  color: #007BFF; /* ble */
}
