#info-panel {
  padding: 24px;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

#info-panel::-webkit-scrollbar {
  width: 6px;
}

#info-panel::-webkit-scrollbar-track {
  background: transparent;
}

#info-panel::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.Connected-Devices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  color: white;
  box-shadow: var(--shadow-medium);
}

.Connected-Devices h2 {
  font-size: 1.2em;
  font-weight: 600;
}

#user-count {
  font-size: 1.9em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.233);
  padding: 10px 16px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}