/* ABOUTME: Right panel styles for connection info and metadata.
   ABOUTME: Covers info sections, key-value rows, and the disclaimer footer. */

.info-panel {
  background: var(--bg-panel);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.info-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.info-section {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.info-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-4);
  margin-bottom: 8px;
}

[data-theme="light"] .info-label {
  color: var(--text-3);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  font-size: 12px;
}

.info-key {
  color: var(--text-3);
}

.info-val {
  color: var(--text-1);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.info-val.green {
  color: var(--green);
}

.info-val.blue {
  color: var(--blue);
}

.info-val.amber {
  color: var(--amber);
}

.info-disclaimer {
  padding: 14px 16px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.info-disclaimer strong {
  color: var(--amber);
  font-weight: 600;
}

.info-disclaimer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.info-disclaimer a:hover {
  text-decoration: underline;
}
