.monitor-panel {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: white;
  border: 1px solid rgb(180, 180, 180);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Roboto', sans-serif;
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.monitor-header {
  background-color: #404d68;
  color: white;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.monitor-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.monitor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #eee;
}

.monitor-row-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  margin-top: 4px;
}

.monitor-label {
  color: #555;
  font-weight: bold;
}

.monitor-val {
  font-weight: bold;
  color: #313c52;
}

.monitor-list {
  width: 100%;
  max-height: 80px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 6px;
  background-color: #fcfcfc;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 40px;
  margin-top: 6px;
}

.monitor-item {
  font-size: 11px;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 2px;
  padding: 1px 4px;
  color: #495057;
  font-family: monospace;
}

.monitor-desc {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
  background-color: #fcfcfc;
  border: 1px solid #eee;
  padding: 6px 8px;
  border-radius: 3px;
  width: 100%;
}

.monitor-boundary-label {
  font-size: 10px;
  font-weight: bold;
  color: #999;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 1px 4px;
  font-family: monospace;
}
