.node-properties {
  width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.node-properties.empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-message {
  text-align: center;
  color: #6c757d;
}

.empty-message p {
  font-size: 16px;
  margin: 0;
}

.node-properties-header {
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.node-properties-header h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
}

.node-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.node-level-badge {
  padding: 4px 8px;
  background: #007bff;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.node-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.node-properties-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.property-section {
  margin-bottom: 30px;
}

.property-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
}

.property-value {
  color: #333;
  line-height: 1.6;
}

.property-value p {
  margin: 0;
  font-size: 14px;
}

.no-data {
  color: #6c757d;
  font-style: italic;
}

.ip-interests-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.ip-interests-list li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

