.wifi-list-title {
  margin-top: 16px;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
}

.wifi-list {
  background: #111;
  border-radius: 12px;
  padding: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.wifi-row {
  display: grid;
  grid-template-columns: 1fr 80px 35px 60px;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-bottom: 1px solid #222;
  font-size: 14px;
}

.wifi-signal {
  display: flex;
  justify-content: center;
  align-items: center;
}

.status svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

.wifi-row:last-child {
  border-bottom: none;
}

.wifi-ssid {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wifi-rssi {
  color: #ccc;
  text-align: right;
  font-size: 13px;
}

.wifi-lock {
  text-align: center;
}

.status-label {
  color: #999;
}

.status-value {
  color: #fff;
  font-weight: 600;
}