.container--devices {
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  height: 100%;
  padding-bottom: 120px;
}

.devices-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 20px;
}

.device-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.059);
  border-radius: 16px;
  padding: 14px;
}

.device-item-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.device-item-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.device-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.device-item-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device-item-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.device-item-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.device-item-status.online {
  background: #4cda64;
  box-shadow: 0 0 6px rgba(76,218,100,0.6);
}

.device-item-status.offline {
  background: rgba(255,255,255,0.2);
}
