.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.skill-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.skill-btn {
  background-color: #374151;
  color: #d1d5db;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.skill-btn:disabled {
  background-color: #1f2937;
  color: #6b7280;
  cursor: not-allowed;
}

.skill-btn.purchase {
  background-color: #3b82f6;
  color: white;
}

.skill-btn.purchase:hover {
  background-color: #2563eb;
}
